This commit is contained in:
Adam Weston
2022-12-05 00:36:03 -05:00
parent a45b10717e
commit 0ae390601a
13 changed files with 277 additions and 380 deletions

View File

@@ -0,0 +1,19 @@
<?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;
}
}