@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | /** |
4 | 4 | * Copyright (c) Phauthentic (https://github.com/Phauthentic) |
5 | 5 | * |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | /** |
4 | 4 | * Copyright (c) Phauthentic (https://github.com/Phauthentic) |
5 | 5 | * |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | /** |
4 | 4 | * Copyright (c) Phauthentic (https://github.com/Phauthentic) |
5 | 5 | * |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | /** |
4 | 4 | * Copyright (c) Phauthentic (https://github.com/Phauthentic) |
5 | 5 | * |
@@ -76,10 +76,10 @@ discard block |
||
76 | 76 | { |
77 | 77 | $count = $this->count / $this->limit; |
78 | 78 | |
79 | - if ((int)$count === 0) { |
|
79 | + if ((int) $count === 0) { |
|
80 | 80 | $count = 1; |
81 | 81 | } else { |
82 | - $count = (int)ceil($count); |
|
82 | + $count = (int) ceil($count); |
|
83 | 83 | } |
84 | 84 | |
85 | 85 | $this->pageCount = $count; |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | /** |
4 | 4 | * Copyright (c) Phauthentic (https://github.com/Phauthentic) |
5 | 5 | * |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | /** |
4 | 4 | * Copyright (c) Phauthentic (https://github.com/Phauthentic) |
5 | 5 | * |
@@ -10,7 +10,7 @@ |
||
10 | 10 | * @link https://github.com/Phauthentic |
11 | 11 | * @license https://opensource.org/licenses/mit-license.php MIT License |
12 | 12 | */ |
13 | -declare(strict_types = 1); |
|
13 | +declare(strict_types=1); |
|
14 | 14 | |
15 | 15 | namespace Phauthentic\Pagination\Paginator; |
16 | 16 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | /** |
4 | 4 | * Copyright (c) Phauthentic (https://github.com/Phauthentic) |
5 | 5 | * |
@@ -32,8 +32,8 @@ |
||
32 | 32 | public function paginate($repository, PaginationParamsInterface $paginationParams) |
33 | 33 | { |
34 | 34 | $query = $repository |
35 | - ->setFirstResult($paginationParams->getCurrentPage()) |
|
36 | - ->setMaxResults($paginationParams->getLimit()); |
|
35 | + ->setFirstResult($paginationParams->getCurrentPage()) |
|
36 | + ->setMaxResults($paginationParams->getLimit()); |
|
37 | 37 | |
38 | 38 | return new Paginator($query, $fetchJoinCollection = true); |
39 | 39 | } |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | /** |
4 | 4 | * Copyright (c) Phauthentic (https://github.com/Phauthentic) |
5 | 5 | * |