remove: unused classes and imports

This commit is contained in:
Ryan Chandler
2022-01-04 12:10:41 +00:00
parent 5a5e5310e2
commit 0f7286f115
4 changed files with 0 additions and 43 deletions

View File

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