| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 33 | 1 | public function __construct( |
|
| 34 | LoggerInterface $logger, |
||
| 35 | OperationFormatterInterface $formatter = null, |
||
| 36 | string $logLevel = LogLevel::INFO |
||
| 37 | ) { |
||
| 38 | 1 | $this->logger = $logger; |
|
| 39 | 1 | $this->formatter = $formatter ?? new OperationFormatter(); |
|
| 40 | 1 | $this->logLevel = $logLevel; |
|
| 41 | 1 | } |
|
| 58 |