mirror of
https://github.com/filamentphp/plugin-skeleton.git
synced 2025-12-06 13:38:53 +08:00
20 lines
314 B
PHP
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;
|
|
}
|
|
}
|