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 82259e5 commit 481112fCopy full SHA for 481112f
spec/PHPCR/Shell/Event/CommandExceptionEventSpec.php
@@ -5,6 +5,7 @@
5
use PhpSpec\ObjectBehavior;
6
use Prophecy\Argument;
7
use Symfony\Component\Console\Output\OutputInterface;
8
+use Symfony\Component\Console\Input\InputInterface;
9
10
class CommandExceptionEventSpec extends ObjectBehavior
11
{
@@ -15,9 +16,10 @@ function it_is_initializable()
15
16
17
function let(
18
\Exception $exception,
19
+ InputInterface $input,
20
OutputInterface $output
21
) {
- $this->beConstructedWith($exception, $output);
22
+ $this->beConstructedWith($exception, $input, $output);
23
}
24
25
function it_should_provide_access_to_event_parameters(
0 commit comments