| 1 | <?php |
||
| 9 | final class NullLogger implements ILogger |
||
| 10 | { |
||
| 11 | use Nette\SmartObject; |
||
| 12 | |||
| 13 | /*************** interface \SixtyEightPublishers\User\Common\Logger\ILogger ***************/ |
||
| 14 | |||
| 15 | /** |
||
| 16 | * {@inheritdoc} |
||
| 17 | */ |
||
| 18 | public function error(string $message): void |
||
| 21 | |||
| 22 | /** |
||
| 23 | * {@inheritdoc} |
||
| 24 | */ |
||
| 25 | public function notice(string $message): void |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | public function info(string $message): void |
||
| 35 | } |
||
| 36 |