Subversion-Projekte lars-tiefland.laravel_shop

Revision

Revision 1625 | Details | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
2 lars 1
<?php
2
 
1624 lars 3
    use Illuminate\Foundation\Inspiring;
4
    use Illuminate\Support\Facades\Artisan;
2 lars 5
 
1624 lars 6
    /*
7
    |--------------------------------------------------------------------------
8
    | Console Routes
9
    |--------------------------------------------------------------------------
10
    |
11
    | This file is where you may define all of your Closure based console
12
    | commands. Each Closure is bound to a command instance allowing a
13
    | simple approach to interacting with each command's IO methods.
14
    |
15
    */
2 lars 16
 
1624 lars 17
    $GLOBALS["INI"] = getConfig();
18
    Artisan::command( 'inspire', function ()
19
    {
20
        $this->comment( Inspiring::quote() );
21
    } )->purpose( 'Display an inspiring quote' );