crocodic-studio/crudbooster

View on GitHub
src/commands/CrudboosterVersionCommand.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php namespace crocodicstudio\crudbooster\commands;

use App;
use Illuminate\Console\Command;

class CrudboosterVersionCommand extends Command
{
    /**
     * The console command name.
     *
     * @var string
     */
    protected $name = 'crudbooster:version';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'CRUDBooster Version Command';

    /**
     * Execute the console command.
     *
     * @return mixed
     */

    public static $version = "5.5.7";

    public function handle()
    {
        $this->info(static::$version);
    }
}