| 1 | <?php |
||
| 14 | class MockeryMockingStrategy extends AbstractMockingStrategy |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * MockeryMockingStrategy constructor. |
||
| 18 | */ |
||
| 19 | 2 | public function __construct() |
|
| 23 | |||
| 24 | /** |
||
| 25 | * @param string $fqcn |
||
| 26 | * @return MockInterface |
||
| 27 | */ |
||
| 28 | 6 | protected function doBuild(string $fqcn) |
|
| 32 | |||
| 33 | /** |
||
| 34 | * @param MockInterface $mock |
||
| 35 | * @param StubSet $stubs |
||
| 36 | * @return void |
||
| 37 | */ |
||
| 38 | 1 | protected function doDecorate($mock, StubSet $stubs) |
|
| 50 | |||
| 51 | /** |
||
| 52 | * @param MockInterface $mock |
||
| 53 | * @return MockInterface |
||
| 54 | */ |
||
| 55 | 3 | protected function doGet($mock) |
|
| 59 | } |
||
| 60 |