mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
19 lines
370 B
PHP
19 lines
370 B
PHP
<?php
|
|
|
|
namespace App\Cli\Commands;
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
class InfoCommand extends Command
|
|
{
|
|
protected $signature = 'info';
|
|
|
|
protected $description = 'Show the application information';
|
|
|
|
public function handle(): void
|
|
{
|
|
$this->info('Version: '.config('app.version'));
|
|
$this->info('Timezone: '.config('app.timezone'));
|
|
}
|
|
}
|