mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 16:54:45 +02:00
18 lines
357 B
PHP
18 lines
357 B
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
class InfoCommand extends Command
|
|
{
|
|
protected $description = 'Displays the application, database, email and backup configurations along with the panel version.';
|
|
|
|
protected $signature = 'p:info';
|
|
|
|
public function handle(): void
|
|
{
|
|
$this->call('about');
|
|
}
|
|
}
|