File tree Expand file tree Collapse file tree 5 files changed +6
-25
lines changed
Expand file tree Collapse file tree 5 files changed +6
-25
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -6,15 +6,16 @@ use Symfony\Component\Console\Input\ArgvInput;
66use Symfony \Component \Debug \Debug ;
77
88// if you don't want to setup permissions the proper way, just uncomment the following PHP line
9- // read https://symfony.com/doc/current/book/installation.html#configuration-and-setup for more information
9+ // read https://symfony.com/doc/current/setup.html#checking-symfony-application-configuration-and-setup
10+ // for more information
1011//umask(0000);
1112
1213set_time_limit (0 );
1314
1415/**
1516 * @var Composer\Autoload\ClassLoader $loader
1617 */
17- $ loader = require __DIR__ .'/../app /autoload.php ' ;
18+ $ loader = require __DIR__ .'/../vendor /autoload.php ' ;
1819
1920$ input = new ArgvInput ();
2021$ env = $ input ->getParameterOption (['--env ' , '-e ' ], getenv ('SYMFONY_ENV ' ) ?: 'dev ' );
Original file line number Diff line number Diff line change 55 xsi : noNamespaceSchemaLocation =" http://schema.phpunit.de/4.8/phpunit.xsd"
66 backupGlobals =" false"
77 colors =" true"
8- bootstrap =" app /autoload.php"
8+ bootstrap =" vendor /autoload.php"
99>
1010 <php >
1111 <ini name =" error_reporting" value =" -1" />
Original file line number Diff line number Diff line change 1919/**
2020 * @var Composer\Autoload\ClassLoader
2121 */
22- $ loader = require __DIR__ .'/../app /autoload.php ' ;
22+ $ loader = require __DIR__ .'/../vendor /autoload.php ' ;
2323if (PHP_VERSION_ID < 70000 ) {
2424 include_once __DIR__ .'/../var/bootstrap.php.cache ' ;
2525}
Original file line number Diff line number Diff line change 3434}
3535
3636/** @var Composer\Autoload\ClassLoader $loader */
37- $ loader = require __DIR__ .'/../app /autoload.php ' ;
37+ $ loader = require __DIR__ .'/../vendor /autoload.php ' ;
3838Debug::enable ();
3939
4040$ kernel = new AppKernel ('dev ' , true );
You can’t perform that action at this time.
0 commit comments