developerIp = $developerIp; } /** * {@inheritdoc} */ public function handle(array $record) { if (!$this->isHandling($record)) { return false; } /// Just in case the remote IP is the same as the developer IP log the output if (!is_null($this->developerIp) && $_SERVER['REMOTE_ADDR'] != $this->developerIp) { return false; } return false === $this->bubble; } }