From: Raphaƫl Gertz Date: Tue, 3 Apr 2018 05:39:05 +0000 (+0200) Subject: Remove type hinting not supported in php < 7.0 X-Git-Tag: 0.0.2 X-Git-Url: https://git.rapsys.eu/packbundle/commitdiff_plain/470c59a8fb1aa33d251bee537d42ea6412466ccb?hp=ce72f37438a0198e8507799304dabb8b78900ea6 Remove type hinting not supported in php < 7.0 --- diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index 8e1817f..0041743 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -13,7 +13,7 @@ use Symfony\Component\Process\ExecutableFinder; */ class Configuration implements ConfigurationInterface { //Constructor required to derivate prefix from kernel.project_dir - public function __construct(\string $projectDir) { + public function __construct($projectDir) { $this->projectDir = $projectDir; }