1 | <?php |
||
16 | class MockeryMockingStrategy extends AbstractMockingStrategy |
||
17 | { |
||
18 | private const CLASS_NAME = Mockery::class; |
||
19 | private const PACKAGE_NAME = 'mockery/mockery'; |
||
20 | |||
21 | /** |
||
22 | * MockeryMockingStrategy constructor. |
||
23 | * |
||
24 | * @throws MissingDependencyException |
||
25 | */ |
||
26 | 2 | public function __construct() |
|
32 | |||
33 | /** |
||
34 | * @param string $fqcn |
||
35 | * @return MockInterface |
||
36 | */ |
||
37 | 24 | protected function doBuild(string $fqcn): MockInterface |
|
41 | |||
42 | /** |
||
43 | * @param MockInterface $mock |
||
44 | * @param MethodStub $stub |
||
45 | * @return void |
||
46 | */ |
||
47 | 23 | protected function doDecorateWithMethod($mock, MethodStub $stub): void |
|
58 | |||
59 | /** |
||
60 | * @param MockInterface $mock |
||
61 | * @return MockInterface |
||
62 | */ |
||
63 | 19 | protected function doGet($mock): MockInterface |
|
67 | } |
||
68 |