Total Complexity | 6 |
Total Lines | 46 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php namespace Picqer\Financials\Exact\Query; |
||
3 | class Resultset |
||
4 | { |
||
5 | protected $connection; |
||
6 | |||
7 | protected $url; |
||
8 | |||
9 | protected $class; |
||
10 | |||
11 | protected $params; |
||
12 | |||
13 | public function __construct($connection, $url, $class, $params) |
||
14 | { |
||
15 | $this->connection = $connection; |
||
16 | $this->url = $url; |
||
17 | $this->class = $class; |
||
18 | $this->params = $params; |
||
19 | } |
||
20 | |||
21 | public function next() |
||
26 | } |
||
27 | |||
28 | public function hasMore() |
||
31 | } |
||
32 | |||
33 | protected function collectionFromResult($result) |
||
49 | } |
||
50 | } |
||
51 |