@@ -10,7 +10,6 @@ |
||
10 | 10 | use Aura\SqlQuery\Common\Select; |
11 | 11 | use Aura\SqlQuery\Common\SelectInterface; |
12 | 12 | use Pagerfanta\Adapter\AdapterInterface; |
13 | -use Pagerfanta\Exception\InvalidArgumentException; |
|
14 | 13 | |
15 | 14 | class AuraSqlQueryAdapter implements AdapterInterface |
16 | 15 | { |
@@ -27,6 +27,9 @@ discard block |
||
27 | 27 | */ |
28 | 28 | private $params; |
29 | 29 | |
30 | + /** |
|
31 | + * @param string $sql |
|
32 | + */ |
|
30 | 33 | public function __construct(ExtendedPdoInterface $pdo, $sql, array $params) |
31 | 34 | { |
32 | 35 | $this->pdo = $pdo; |
@@ -73,6 +76,8 @@ discard block |
||
73 | 76 | |
74 | 77 | /** |
75 | 78 | * {@inheritdoc} |
79 | + * @param integer $offset |
|
80 | + * @param integer $length |
|
76 | 81 | */ |
77 | 82 | public function getLimitClause($offset, $length) |
78 | 83 | { |