コード例 #1
0
ファイル: Field.php プロジェクト: WeCamp/flyingliquourice
 /**
  * @return array
  */
 public function toArray()
 {
     return ['coords' => $this->coords->toArray(), 'shot' => $this->shot];
 }
コード例 #2
0
 /**
  * @return array
  */
 public function toArray()
 {
     return ['result' => $this->result, 'target' => $this->target->toArray(), 'startPoint' => is_object($this->startPoint) ? $this->startPoint->toArray() : [], 'endPoint' => is_object($this->endPoint) ? $this->endPoint->toArray() : []];
 }
コード例 #3
0
ファイル: Ship.php プロジェクト: WeCamp/flyingliquourice
 /**
  * @return array
  */
 public function toArray()
 {
     return ['startPoint' => $this->startPoint->toArray(), 'endPoint' => $this->endPoint->toArray(), 'hits' => $this->hits];
 }