Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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);