| 1 | <?php |
||
| 15 | trait WithMockery |
||
| 16 | { |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param array $args |
||
| 20 | * |
||
| 21 | * @return MockInterface |
||
| 22 | */ |
||
| 23 | protected function partialMock(...$args) : MockInterface |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param array ...$args |
||
| 31 | * |
||
| 32 | * @return MockInterface |
||
| 33 | */ |
||
| 34 | protected function mock(...$args) : MockInterface |
||
| 39 | } |
||
| 40 |