Skip to content

Commit

Permalink
chore: fixes types
Browse files Browse the repository at this point in the history
  • Loading branch information
nunomaduro committed Jan 10, 2024
1 parent 59a139b commit 6d1d1b6
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);
Options::setInputDefinition($inputDefinition); // @phpstan-ignore-line
$input = new ArgvInput($options, $inputDefinition);

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

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

0 comments on commit 6d1d1b6

Please sign in to comment.