| 1 | <?php |
||
| 30 | abstract class FormatterAbstract extends ObjectAbstract implements FormatterInterface |
||
| 31 | { |
||
| 32 | /** |
||
| 33 | * {@inheritDoc} |
||
| 34 | */ |
||
| 35 | public function __invoke(LogEntryInterface $logEntry) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Returns the formatted message |
||
| 42 | * |
||
| 43 | * @param LogEntryInterface $logEntry |
||
| 44 | * @return string |
||
| 45 | * @access protected |
||
| 46 | */ |
||
| 47 | abstract protected function format( |
||
| 50 | } |
||
| 51 |