コード例 #1
0
ファイル: Coach.php プロジェクト: vikkio88/dsManager-php
 /**
  * @return array
  */
 public function toArray()
 {
     $result = parent::toArray();
     $result["favouriteModule"] = $this->favouriteModule;
     $result["wageReq"] = $this->getWage();
     return $result;
 }
コード例 #2
0
ファイル: Player.php プロジェクト: vikkio88/dsManager-php
 /**
  * @return array
  */
 public function toArray()
 {
     $result = parent::toArray();
     $result["role"] = $this->role;
     $result['val'] = $this->getVal();
     $result['wageReq'] = $this->getWage();
     return $result;
 }