Added love command

This commit is contained in:
Angelillo15 2023-08-04 23:46:42 +02:00
parent d2984af12c
commit 8595f2a09a
1 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,33 @@
<?php
namespace Pterodactyl\Console\Commands;
use Illuminate\Console\Command;
class Love extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'n:love';
/**
* The console command description.
*
* @var string
*/
protected $description = '<3';
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
$this->info('Ari <3');
return Command::SUCCESS;
}
}