Airbrake\Client::notify PHP Method

notify() public method

Notify about the notice.
public notify ( airbrake\Notice $notice ) : string | boolean
$notice airbrake\Notice
return string | boolean
    public function notify(Notice $notice)
    {
        return $this->connection->send($notice);
    }

Usage Example

 public function notify(Notice $notice)
 {
     if ($this->enabled) {
         parent::notify($notice);
     }
 }