Skip to content

Commit

Permalink
add styleci fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
umairparacha00 committed Nov 9, 2023
1 parent 2928e0e commit 15ed381
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/NewCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ protected function interact(InputInterface $input, OutputInterface $output)
$this->promptForJetstreamOptions($input);
}

if (!$input->getOption('telescope') && !$input->getOption('telescope-local')) {
if (! $input->getOption('telescope') && ! $input->getOption('telescope-local')) {
match (select(
label: 'Would you like to install Laravel Telescope?',
options: [
Expand Down Expand Up @@ -364,7 +364,6 @@ protected function installTelescope(string $directory, InputInterface $input, Ou

$this->runCommands($commands, $input, $output, workingPath: $directory);


if ($input->getOption('telescope-local')) {
$this->replaceInFile(
' App\Providers\TelescopeServiceProvider::class,',
Expand Down

0 comments on commit 15ed381

Please sign in to comment.