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;
}
}

View File

@@ -1,16 +0,0 @@
<?php
namespace VendorName\Skeleton\Facades;
use Illuminate\Support\Facades\Facade;
/**
* @see \VendorName\Skeleton\Skeleton
*/
class Skeleton extends Facade
{
protected static function getFacadeAccessor()
{
return 'skeleton';
}
}

View File

@@ -1,7 +0,0 @@
<?php
namespace VendorName\Skeleton;
class Skeleton
{
}

View File

@@ -2,7 +2,6 @@
namespace VendorName\Skeleton; namespace VendorName\Skeleton;
use VendorName\Skeleton\Commands\SkeletonCommand;
use Filament\PluginServiceProvider; use Filament\PluginServiceProvider;
class SkeletonServiceProvider extends PluginServiceProvider class SkeletonServiceProvider extends PluginServiceProvider