laravels 343 B

1234567891011
  1. #!/usr/bin/env php
  2. <?php
  3. $basePath = realpath(__DIR__ . '/../');
  4. include $basePath . '/vendor/autoload.php';
  5. $command = new Hhxsv5\LaravelS\Console\Portal($basePath);
  6. $input = new Symfony\Component\Console\Input\ArgvInput();
  7. $output = new Symfony\Component\Console\Output\ConsoleOutput();
  8. $code = $command->run($input, $output);
  9. exit($code);