コード例 #1
0
ファイル: Entity.php プロジェクト: apioo/fusio-impl
 /**
  * Returns the GET response
  *
  * @return array|\PSX\Record\RecordInterface
  */
 protected function doGet()
 {
     return $this->logService->get((int) $this->getUriFragment('log_id'));
 }
コード例 #2
0
ファイル: Collection.php プロジェクト: apioo/fusio-impl
 /**
  * Returns the GET response
  *
  * @return array|\PSX\Record\RecordInterface
  */
 protected function doGet()
 {
     return $this->logService->getAll($this->getParameter('startIndex', Validate::TYPE_INTEGER) ?: null, QueryFilter::create($this->getParameters()));
 }