Skip to content

Commit

Permalink
run composer fix code
Browse files Browse the repository at this point in the history
  • Loading branch information
JonPurvis committed Dec 2, 2023
1 parent 5a23c36 commit 2d8ca33
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions src/Console/Commands/MakeRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@

namespace Saloon\Laravel\Console\Commands;

use Illuminate\Contracts\Filesystem\FileNotFoundException;
use Illuminate\Support\Arr;
use Saloon\Enums\Method;
use Symfony\Component\Console\Input\InputInterface;
use Illuminate\Support\Arr;
use function Laravel\Prompts\select;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use function Laravel\Prompts\select;
use Illuminate\Contracts\Filesystem\FileNotFoundException;

class MakeRequest extends MakeCommand
{
Expand Down Expand Up @@ -58,7 +58,6 @@ protected function getOptions(): array

/**
* Interact further with the user if they were prompted for missing arguments.
*
*/
protected function afterPromptingForMissingArguments(InputInterface $input, OutputInterface $output): void
{
Expand All @@ -78,7 +77,6 @@ protected function afterPromptingForMissingArguments(InputInterface $input, Outp
* Build the class with the given name.
*
* @param string $name
* @return MakeRequest|string
*
* @throws FileNotFoundException
*/
Expand All @@ -92,9 +90,6 @@ protected function buildClass($name): MakeRequest|string

/**
* Replace the method for the stub
* @param $stub
* @param $name
* @return string
*/
protected function replaceMethod($stub, $name): string
{
Expand Down

0 comments on commit 2d8ca33

Please sign in to comment.