Skip to content

Commit

Permalink
Ran laravel pint on the package to fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
coolsam726 committed Apr 8, 2024
1 parent 8fa2120 commit d0baef6
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/Commands/ProviderMakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace Savannabits\Modular\Commands;

use Illuminate\Console\GeneratorCommand;
use Illuminate\Support\ServiceProvider;
use Savannabits\Modular\Support\Concerns\GeneratesModularFiles;
use Symfony\Component\Console\Attribute\AsCommand;
use Symfony\Component\Console\Input\InputOption;
Expand All @@ -12,6 +11,7 @@
class ProviderMakeCommand extends GeneratorCommand
{
use GeneratesModularFiles;

/**
* The console command name.
*
Expand All @@ -36,8 +36,6 @@ public function handle(): ?bool

/**
* Get the stub file for the generator.
*
* @return string
*/
protected function getStub(): string
{
Expand All @@ -51,8 +49,6 @@ protected function getRelativeNamespace(): string

/**
* Get the console command arguments.
*
* @return array
*/
protected function getOptions(): array
{
Expand All @@ -61,4 +57,3 @@ protected function getOptions(): array
];
}
}

0 comments on commit d0baef6

Please sign in to comment.