Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | private function buildLogger(): void |
||
14 | { |
||
15 | $this->logger = $this->getMockBuilder(LoggerInterface::class) |
||
|
|||
16 | ->disableOriginalConstructor() |
||
17 | ->setMethods([ |
||
18 | 'debug', |
||
19 | 'log', |
||
20 | 'emergency', |
||
21 | 'info', |
||
22 | 'warning', |
||
23 | 'alert', |
||
24 | 'critical', |
||
25 | 'error', |
||
26 | 'notice', |
||
27 | ]) |
||
28 | ->getMock() |
||
29 | ; |
||
37 |