. */ declare(strict_types=1); namespace SP\Domain\Log\Providers; /** * Class LogHandler */ final class LogHandler extends LoggerBase { /** * @inheritDoc */ public function getEvents(): ?string { return $this->events; } protected function setup(): void { } }