コード例 #1
0
ファイル: Paginator.php プロジェクト: Owsy/sylius-api-php
 public function getCurrentPageResults()
 {
     if (!$this->isResultCached()) {
         $this->queryParameters['page'] = $this->currentPage;
         $this->currentResults = $this->adapter->getResults($this->queryParameters, $this->uriParameters);
     }
     return $this->currentResults;
 }