Airbrake\Client::notify PHP 메소드

notify() 공개 메소드

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

Usage Example

예제 #1
0
 public function notify(Notice $notice)
 {
     if ($this->enabled) {
         parent::notify($notice);
     }
 }