#!/usr/bin/env php load(__DIR__.'/../.env'); } $input = new ArgvInput(); $env = $input->getParameterOption(['--env', '-e'], getenv('APP_ENV') ?: 'dev'); $debug = getenv('APP_DEBUG') !== '0' && !$input->hasParameterOption(['--no-debug', '']); if ($debug && class_exists(Debug::class)) { Debug::enable(); } $kernel = new Kernel($env, $debug); $application = new Application($kernel); $application->run($input);