コード例 #1
0
ファイル: Event.php プロジェクト: stevenimle/GMA
 public function getGroup() : Group
 {
     if ($this->group_id && !$this->_group) {
         $this->_group = Group::find($this->_pdo, $this->group_id);
     }
     return $this->_group;
 }