Skip to content

Commit

Permalink
Fixes wrong ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
nunomaduro committed Jan 12, 2024
1 parent fbe6143 commit 87f1762
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Adapters/Laravel/Commands/TestCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -269,13 +269,13 @@ protected function paratestArguments($options)
], $options);

$inputDefinition = new InputDefinition();
Options::setInputDefinition($inputDefinition); // @phpstan-ignore-line
Options::setInputDefinition($inputDefinition);
$input = new ArgvInput($options, $inputDefinition);

/** @var non-empty-string $basePath */
$basePath = base_path();

$paraTestOptions = Options::fromConsoleInput( // @phpstan-ignore-line
$paraTestOptions = Options::fromConsoleInput(
$input,
$basePath,
);
Expand Down

0 comments on commit 87f1762

Please sign in to comment.