コード例 #1
0
ファイル: Exec.php プロジェクト: jocoonopa/lubri
 public function handle(ExecEvent $event)
 {
     if ($event->hasError()) {
         return;
     }
     $this->setQue($event->getQue());
     return $this->exec()->update()->isList() ? $this->repair() : NULL;
 }
コード例 #2
0
ファイル: Notify.php プロジェクト: jocoonopa/lubri
 public function handle(ExecEvent $event)
 {
     return $event->hasError() ? $this->errorNoti($event) : $this->completeNoti($event);
 }