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 e3ff503 commit 21ced65Copy full SHA for 21ced65
1 file changed
tests/bootstrap.php
@@ -48,7 +48,7 @@ protected function expectCallableNever()
48
49
protected function createCallableMock()
50
{
51
- return $this->getMock('React\Tests\Socket\Stub\CallableStub');
+ return $this->getMock('CallableStub');
52
}
53
54
protected function createResolverMock()
@@ -58,3 +58,10 @@ protected function createResolverMock()
58
->getMock();
59
60
61
+
62
+class CallableStub
63
+{
64
+ public function __invoke()
65
+ {
66
+ }
67
+}
0 commit comments