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