Blame view

artisan 1.07 KB
e77200db5   nologostudio.ru   Initial commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  #!/usr/bin/env php
  <?php
  
  use Symfony\Component\Console\Input\ArgvInput;
  use Symfony\Component\Console\Output\ConsoleOutput;
  
  /*
  |--------------------------------------------------------------------------
  | Create The Application
  |--------------------------------------------------------------------------
  |
  | First we need to get an application instance. This creates an instance
  | of the application / container and bootstraps the application so it
  | is ready to receive HTTP / Console requests from the environment.
  |
  */
  
  $app = require __DIR__.'/bootstrap/app.php';
  
  /*
  |--------------------------------------------------------------------------
  | Run The Artisan Application
  |--------------------------------------------------------------------------
  |
  | When we run the console application, the current CLI command will be
  | executed in this console and the response sent back to a terminal
  | or another output device for the developers. Here goes nothing!
  |
  */
  
  $kernel = $app->make(
      'Illuminate\Contracts\Console\Kernel'
  );
  
  exit($kernel->handle(new ArgvInput, new ConsoleOutput));