Skip to content

Instantly share code, notes, and snippets.

@weaverryan
Last active May 14, 2018 18:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save weaverryan/66d972e1aac383f9330160c38ab12230 to your computer and use it in GitHub Desktop.
Save weaverryan/66d972e1aac383f9330160c38ab12230 to your computer and use it in GitHub Desktop.
working on console
#!/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';
if (!class_exists(Application::class)) {
throw new \RuntimeException('You need to add "symfony/framework-bundle" as a Composer dependency.');
}
// this would simply read .env and populate the environment variables
// (or do nothing if APP_ENV is already set)
Kernel::bootstrapEnvironment();
$input = new ArgvInput();
$env = $input->getParameterOption(['--env', '-e'], $_SERVER['APP_ENV'] ?? 'dev');
$debug = ($_SERVER['APP_DEBUG'] ?? true) !== '0' && !$input->hasParameterOption(['--no-debug', '']);
if ($debug) {
umask(0000);
if (class_exists(Debug::class)) {
Debug::enable();
}
}
$kernel = new Kernel($env, $debug);
$application = new Application($kernel);
$application->run($input);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment