예제 #1
0
 /**
  * Append notifier to a chain
  * @param Notifier $notifier
  */
 public function append(Notifier $notifier)
 {
     if (is_null($this->successor)) {
         $this->successor = $notifier;
     } else {
         $this->successor->append($notifier);
     }
 }