File tree Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,13 @@ services:
6
6
arguments :
7
7
stubInterfaceName : PHPStan\Mockery\Type\Allows
8
8
9
+ -
10
+ class : PHPStan\Mockery\Reflection\StubMethodsClassReflectionExtension
11
+ tags :
12
+ - phpstan.broker.methodsClassReflectionExtension
13
+ arguments :
14
+ stubInterfaceName : PHPStan\Mockery\Type\Expects
15
+
9
16
-
10
17
class : PHPStan\Mockery\Type\StubDynamicReturnTypeExtension
11
18
tags :
@@ -14,13 +21,28 @@ services:
14
21
stubInterfaceName : PHPStan\Mockery\Type\Allows
15
22
stubMethodName : allows
16
23
24
+ -
25
+ class : PHPStan\Mockery\Type\StubDynamicReturnTypeExtension
26
+ tags :
27
+ - phpstan.broker.dynamicMethodReturnTypeExtension
28
+ arguments :
29
+ stubInterfaceName : PHPStan\Mockery\Type\Expects
30
+ stubMethodName : expects
31
+
17
32
-
18
33
class : PHPStan\Mockery\Type\ExpectationAfterStubDynamicReturnTypeExtension
19
34
tags :
20
35
- phpstan.broker.dynamicMethodReturnTypeExtension
21
36
arguments :
22
37
stubInterfaceName : PHPStan\Mockery\Type\Allows
23
38
39
+ -
40
+ class : PHPStan\Mockery\Type\ExpectationAfterStubDynamicReturnTypeExtension
41
+ tags :
42
+ - phpstan.broker.dynamicMethodReturnTypeExtension
43
+ arguments :
44
+ stubInterfaceName : PHPStan\Mockery\Type\Expects
45
+
24
46
-
25
47
class : PHPStan\Mockery\Type\MockDynamicReturnTypeExtension
26
48
tags :
Original file line number Diff line number Diff line change
1
+ <?php declare (strict_types = 1 );
2
+
3
+ namespace PHPStan \Mockery \Type ;
4
+
5
+ interface Expects
6
+ {
7
+
8
+ }
You can’t perform that action at this time.
0 commit comments