File tree Expand file tree Collapse file tree 3 files changed +39
-35
lines changed Expand file tree Collapse file tree 3 files changed +39
-35
lines changed Original file line number Diff line number Diff line change
1
+ parameters :
2
+ stubFiles :
3
+ - stubs/MockInterface.php
4
+
1
5
services :
2
6
-
3
7
class : PHPStan\Mockery\Reflection\StubMethodsClassReflectionExtension
@@ -53,11 +57,6 @@ services:
53
57
tags :
54
58
- phpstan.broker.dynamicStaticMethodReturnTypeExtension
55
59
56
- -
57
- class : PHPStan\Mockery\Type\ShouldReceiveDynamicReturnTypeExtension
58
- tags :
59
- - phpstan.broker.dynamicMethodReturnTypeExtension
60
-
61
60
-
62
61
class : PHPStan\Mockery\PhpDoc\TypeNodeResolverExtension
63
62
tags :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace Mockery ;
4
+
5
+ interface MockInterface
6
+ {
7
+
8
+ /**
9
+ * @param string[] ...$methodNames
10
+ * @return Expectation
11
+ */
12
+ public function shouldReceive (...$ methodNames );
13
+
14
+ /**
15
+ * @return static
16
+ */
17
+ public function makePartial ();
18
+
19
+ }
20
+
21
+ interface LegacyMockInterface
22
+ {
23
+
24
+ /**
25
+ * @param string[] ...$methodNames
26
+ * @return Expectation
27
+ */
28
+ public function shouldReceive (...$ methodNames );
29
+
30
+ /**
31
+ * @return static
32
+ */
33
+ public function makePartial ();
34
+
35
+ }
You can’t perform that action at this time.
0 commit comments