server/src/app/Console/Commands/Inspire.php
author Chloe Laisne <chloe.laisne@gmail.com>
Tue, 05 Jul 2016 01:30:27 +0200
changeset 227 5c9250f55f4b
parent 2 00e2916104fe
permissions -rw-r--r--
Basic notice logic from query parameters Playlist component notice open/close styles

<?php

namespace CorpusParole\Console\Commands;

use Illuminate\Console\Command;
use Illuminate\Foundation\Inspiring;

class Inspire extends Command
{
    /**
     * The console command name.
     *
     * @var string
     */
    protected $name = 'inspire';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Display an inspiring quote';

    /**
     * Execute the console command.
     *
     * @return mixed
     */
    public function handle()
    {
        $this->comment(PHP_EOL.Inspiring::quote().PHP_EOL);
    }
}