예제 #1
0
 /**
  * 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);
 }