#!/usr/bin/env php<?phpuseApp\Kernel;useSymfony\Bundle\FrameworkBundle\Console\Application;useSymfony\Component\Debug\Debug;set_time_limit(0);requiredirname(__DIR__).'/vendor/autoload.php';if(!class_exists(Application::class)){thrownew\RuntimeException('You need to add "symfony/framework-bundle" as a Composer dependency.');}Kernel::bootstrapCli($_SERVER['argv']);Kernel::bootstrapEnv();if($_SERVER['APP_DEBUG']){umask(0000);if(class_exists(Debug::class)){Debug::enable();}}$kernel=newKernel($_SERVER['APP_ENV'],$_SERVER['APP_DEBUG']);$application=newApplication($kernel);$application->run();