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.

console 415B

1234567891011121314151617
  1. #!/usr/bin/env php
  2. <?php
  3. use App\Kernel;
  4. use Symfony\Bundle\FrameworkBundle\Console\Application;
  5. use Symfony\Component\Console\Input\ArgvInput;
  6. use Symfony\Component\Debug\Debug;
  7. use Symfony\Component\Dotenv\Dotenv;
  8. set_time_limit(0);
  9. require __DIR__ . '/../vendor/autoload.php';
  10. $input = new ArgvInput();
  11. $kernel = new Kernel('prod', false);
  12. $application = new Application($kernel);
  13. $application->run($input);