| 1 | <?php |
||
| 10 | class SMSFormatter extends LineFormatter |
||
| 11 | { |
||
| 12 | |||
| 13 | const SIMPLE_FORMAT = "%level_name%: %message% %context% %extra%"; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param string $format The format of the message |
||
| 17 | * @param bool $allowInlineLineBreaks Whether to allow inline line breaks in log entries |
||
| 18 | * @param bool $ignoreEmptyContextAndExtra |
||
| 19 | */ |
||
| 20 | 9 | public function __construct($format = null, $allowInlineLineBreaks = false, $ignoreEmptyContextAndExtra = true) |
|
| 25 | } |
||
| 26 |