mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 11:06:51 +01: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');
 | 
						|
    }
 | 
						|
}
 |