ValidFormatter.php 313 B

1234567891011121314151617
  1. <?php
  2. declare(strict_types=1);
  3. namespace TestApp\Log\Formatter;
  4. use Cake\Log\Formatter\AbstractFormatter;
  5. class ValidFormatter extends AbstractFormatter
  6. {
  7. /**
  8. * @inheritDoc
  9. */
  10. public function format($level, string $message, array $context = []): string
  11. {
  12. return $message;
  13. }
  14. }