コード例 #1
0
ファイル: EntityCollection.php プロジェクト: bigwhoop/hynage
 /**
  * Export this Entity collection. Default is array.
  *
  * @param \Hynage\ORM\ExportStrategy\Exporting $strategy
  * @return mixed
  */
 public function export(ExportStrategy\Exporting $strategy)
 {
     return $strategy->exportCollection($this);
 }
コード例 #2
0
ファイル: Entity.php プロジェクト: bigwhoop/hynage
 /**
  * Export this Entity. Default is array.
  *
  * @param \Hynage\ORM\ExportStrategy\Exporting $strategy
  * @return mixed
  */
 public function export(ExportStrategy\Exporting $strategy)
 {
     return $strategy->exportEntity($this);
 }