| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | class AdaptiveHandler extends NewRelicHandler |
||
| 20 | { |
||
| 21 | public function __construct( |
||
| 22 | string $level = LogLevel::ERROR, |
||
| 23 | bool $bubble = true, |
||
| 24 | string $appName = null, |
||
| 25 | bool $explodeArrays = false, |
||
| 26 | string $transactionName = null |
||
| 27 | ) { |
||
| 28 | parent::__construct($level, $bubble, $appName, $explodeArrays, $transactionName); |
||
| 29 | } |
||
| 30 | |||
| 31 | protected function write(array $record): void |
||
| 38 | } |
||
| 39 | } |
||
| 40 |