mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-02 14:36:17 +00:00
wip
This commit is contained in:
18
app/Cli/Commands/InfoCommand.php
Normal file
18
app/Cli/Commands/InfoCommand.php
Normal file
@ -0,0 +1,18 @@
|
||||
<?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'));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user