PHP Classes

File: artisan

Recommend this page to a friend!
  Classes of Eray Akartuna   Lumen Starter Pack   artisan   Download  
File: artisan
Role: Example script
Content type: text/plain
Description: Example script
Class: Lumen Starter Pack
Implement a OAuth 2 based REST API server
Author: By
Last change:
Date: 7 years ago
Size: 1,094 bytes
 

Contents

Class file image Download
#!/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));