$conf) { $this->loadSingle($key, $conf); } } public function loadSingle(string $key, array $config): void { $class = "\App\Notification\\" . $key; $this->notifiers[$key] = new $class($config); } public function send(string $title, string $message): void { foreach ($this->notifiers as $notifier) { $notifier->send($title, $message); } } }