Skip to content

Commit f9ee7d3

Browse files
committed
fixed code to match PHPStan 1.12/2.0 compatibility on level 6
1 parent 6a8890b commit f9ee7d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Command/MultiCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
final class MultiCommand implements CommandInterface
2020
{
2121
/** @var Collection<int, CommandInterface> */
22-
private $commands;
22+
private Collection $commands;
2323
private string $glue;
2424

2525
/**
26-
* @param Collection<int, CommandInterface> $commands
26+
* @param Collection<int, mixed> $commands
2727
* @param string $glue
2828
*/
2929
public function __construct(Collection $commands, string $glue = ' && ')

0 commit comments

Comments
 (0)