Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
23 | 4 | public function __construct( |
|
24 | OperationFormatterInterface $operationFormatter = null, |
||
25 | ExceptionFormatterInterface $exceptionFormatter = null |
||
26 | ) { |
||
27 | 4 | $this->operationFormatter = ( |
|
28 | 4 | $operationFormatter ?? new OperationFormatter() |
|
29 | ); |
||
30 | 4 | $this->exceptionFormatter = ( |
|
31 | 4 | $exceptionFormatter ?? new ExceptionFormatter() |
|
32 | ); |
||
66 |