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 eea3011 commit d255819Copy full SHA for d255819
1 file changed
tests/Console/CommandLoader/DevToolsCommandLoaderTest.php
@@ -29,6 +29,7 @@
29
use Prophecy\Argument;
30
use Prophecy\PhpUnit\ProphecyTrait;
31
use Psr\Container\ContainerInterface;
32
+use Symfony\Component\Console\Command\Command;
33
use Symfony\Component\Finder\Finder;
34
use Symfony\Component\Finder\SplFileInfo;
35
@@ -46,7 +47,7 @@ final class DevToolsCommandLoaderTest extends TestCase
46
47
public function constructorWillRegisterOnlyInstantiableCommands(): void
48
{
49
$commandDirectory = \dirname(__DIR__, 3) . '/src/Console/Command';
- $command = $this->prophesize(CodeStyleCommand::class);
50
+ $command = $this->prophesize(Command::class);
51
52
$finder = $this->prophesize(Finder::class);
53
$finder->files()
0 commit comments