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 a1fcc16 commit 65babe2Copy full SHA for 65babe2
tests/ClientTest.php
@@ -90,7 +90,9 @@ public function testExtract()
90
]);
91
92
$commandBus = $this->prophesize(CommandBusInterface::class);
93
- $commandBus->handle(new ExtractFQCNCommand(get_class($resource), $resource))->shouldBeCalled()->willReturn(resolve([]));
+ $commandBus->handle(
94
+ new ExtractFQCNCommand(get_class($resource), $resource)
95
+ )->shouldBeCalled()->willReturn(resolve([]));
96
97
$container = ContainerBuilder::buildDevContainer();
98
$container->set(CommandBusInterface::class, $commandBus->reveal());
0 commit comments