You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| 12345678910111213141516 |
- #!/usr/bin/env php
- <?php
-
- use App\Kernel;
- use Symfony\Bundle\FrameworkBundle\Console\Application;
- use Symfony\Component\Console\Input\ArgvInput;
- use Symfony\Component\Debug\Debug;
- use Symfony\Component\Dotenv\Dotenv;
-
- set_time_limit(0);
-
- require __DIR__.'/../vendor/autoload.php';
-
- $kernel = new Kernel('prod', false);
- $application = new Application($kernel);
- $application->run($input);
|