From 2d8ca33b687d5702aeb73ce1093bab415845fd22 Mon Sep 17 00:00:00 2001 From: JonPurvis Date: Sat, 2 Dec 2023 23:00:19 +0000 Subject: [PATCH] run composer fix code --- src/Console/Commands/MakeRequest.php | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/src/Console/Commands/MakeRequest.php b/src/Console/Commands/MakeRequest.php index 879f22a..68c6242 100644 --- a/src/Console/Commands/MakeRequest.php +++ b/src/Console/Commands/MakeRequest.php @@ -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 { @@ -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 { @@ -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 */ @@ -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 {