Files
plugin-skeleton/src/Commands/SkeletonCommand.php
Adam Weston 0ae390601a wip
2022-12-05 00:36:03 -05:00

20 lines
314 B
PHP

<?php
namespace VendorName\Skeleton\Commands;
use Illuminate\Console\Command;
class SkeletonCommand extends Command
{
public $signature = 'skeleton';
public $description = 'My command';
public function handle(): int
{
$this->comment('All done');
return self::SUCCESS;
}
}