Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2389d7c

Browse files
committed
Revert "feature symfony#30651 Allow user to set the project dir (tdutrion)"
This reverts commit aa12dd0, reversing changes made to 7d01aae.
1 parent c203379 commit 2389d7c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
8383
const END_OF_MAINTENANCE = '01/2020';
8484
const END_OF_LIFE = '07/2020';
8585

86-
public function __construct(string $environment, bool $debug, string $projectDir = null)
86+
public function __construct(string $environment, bool $debug)
8787
{
8888
$this->environment = $environment;
8989
$this->debug = $debug;
9090
$this->rootDir = $this->getRootDir(false);
9191
$this->name = $this->getName(false);
92-
$this->projectDir = $projectDir;
9392
}
9493

9594
public function __clone()

0 commit comments

Comments
 (0)