| 1 | <?php declare(strict_types=1); |
||
| 16 | class DbFormatter extends LineFormatter |
||
| 17 | { |
||
| 18 | public const FORMAT_DEFAULT = "%message% %context% %extra%"; |
||
| 19 | |||
| 20 | public const MAX_LENGTH_DEFAULT = 65535; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var int |
||
| 24 | */ |
||
| 25 | protected $maxLength; |
||
| 26 | |||
| 27 | 7 | public function __construct( |
|
| 42 | |||
| 43 | /** |
||
| 44 | * {@inheritdoc} |
||
| 45 | */ |
||
| 46 | 7 | public function format(array $record) |
|
| 56 | } |
||
| 57 |