コード例 #1
0
ファイル: AdapterChain.php プロジェクト: czester90/gowithme
 /**
  * Get the auth event
  *
  * @return AdapterChainEvent
  */
 public function getEvent()
 {
     if (null === $this->event) {
         $this->setEvent(new AdapterChainEvent());
         $this->event->setTarget($this);
     }
     return $this->event;
 }