We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bee91ac commit 4362895Copy full SHA for 4362895
src/CommandFactory.php
@@ -9,14 +9,14 @@
9
class CommandFactory implements CommandFactoryInterface
10
{
11
private mixed $parser;
12
- private CommandInterface $fileReader;
+ private FileReaderInterface $fileReader;
13
private const array FORMAT_KEYS = [
14
"stylish", "plain", "json"
15
];
16
17
public function __construct(
18
mixed $parser,
19
- CommandInterface $fileReader
+ FileReaderInterface $fileReader
20
) {
21
$this->parser = $parser;
22
$this->fileReader = $fileReader;
0 commit comments