File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -12,19 +12,19 @@ class Bootstrap
12
12
public static function boot (): Configurator
13
13
{
14
14
$ configurator = new Configurator ;
15
- $ appDir = dirname (__DIR__ );
15
+ $ rootDir = dirname (__DIR__ );
16
16
17
17
//$configurator->setDebugMode('[email protected] '); // enable for your remote IP
18
- $ configurator ->enableTracy ($ appDir . '/log ' );
18
+ $ configurator ->enableTracy ($ rootDir . '/log ' );
19
19
20
- $ configurator ->setTempDirectory ($ appDir . '/temp ' );
20
+ $ configurator ->setTempDirectory ($ rootDir . '/temp ' );
21
21
22
22
$ configurator ->createRobotLoader ()
23
23
->addDirectory (__DIR__ )
24
24
->register ();
25
25
26
- $ configurator ->addConfig ($ appDir . '/config/common.neon ' );
27
- $ configurator ->addConfig ($ appDir . '/config/services.neon ' );
26
+ $ configurator ->addConfig ($ rootDir . '/config/common.neon ' );
27
+ $ configurator ->addConfig ($ rootDir . '/config/services.neon ' );
28
28
29
29
return $ configurator ;
30
30
}
You can’t perform that action at this time.
0 commit comments