@@ -82,7 +82,7 @@ |
||
82 | 82 | if (!empty($value)) { |
83 | 83 | $captcha = CaptchaManager::getHandler(); |
84 | 84 | |
85 | - if (!$captcha->verify($value)){ |
|
85 | + if (!$captcha->verify($value)) { |
|
86 | 86 | $this->addError($field, 'captcha', $param); |
87 | 87 | } |
88 | 88 | } |
@@ -124,8 +124,9 @@ |
||
124 | 124 | */ |
125 | 125 | public function verify(string $code): bool |
126 | 126 | { |
127 | - if (is_null($this->secretKey)) |
|
128 | - throw new Exception('The secret key is not set'); |
|
127 | + if (is_null($this->secretKey)) { |
|
128 | + throw new Exception('The secret key is not set'); |
|
129 | + } |
|
129 | 130 | |
130 | 131 | if (empty($code)) { |
131 | 132 | $this->errorCodes = ['internal-empty-response']; |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | $this->matchedRoutes = $this->findMatches($uri); |
103 | 103 | |
104 | 104 | if (empty($this->matchedRoutes)) { |
105 | - stop(function () { |
|
105 | + stop(function() { |
|
106 | 106 | $this->handleNotFound(); |
107 | 107 | }); |
108 | 108 | } |
@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | $routePattern = '(\/)?'; |
204 | 204 | $routeParams = []; |
205 | 205 | |
206 | - $lastIndex = (int)array_key_last($routeSegments); |
|
206 | + $lastIndex = (int) array_key_last($routeSegments); |
|
207 | 207 | |
208 | 208 | foreach ($routeSegments as $index => $segment) { |
209 | 209 | $segmentParam = $this->getSegmentParam($segment, $index, $lastIndex); |
@@ -4,35 +4,35 @@ |
||
4 | 4 | |
5 | 5 | interface PaginatorInterface |
6 | 6 | { |
7 | - public function getPagination(bool $withBaseUrl): ?string; |
|
7 | + public function getPagination(bool $withBaseUrl): ?string; |
|
8 | 8 | |
9 | - public function currentPageNumber(): int; |
|
9 | + public function currentPageNumber(): int; |
|
10 | 10 | |
11 | - public function currentPageLink(bool $withBaseUrl): ?string; |
|
11 | + public function currentPageLink(bool $withBaseUrl): ?string; |
|
12 | 12 | |
13 | - public function previousPageLink(bool $withBaseUrl): ?string; |
|
13 | + public function previousPageLink(bool $withBaseUrl): ?string; |
|
14 | 14 | |
15 | - public function previousPageNumber(): ?int; |
|
15 | + public function previousPageNumber(): ?int; |
|
16 | 16 | |
17 | - public function firstPageLink(bool $withBaseUrl): ?string; |
|
17 | + public function firstPageLink(bool $withBaseUrl): ?string; |
|
18 | 18 | |
19 | - public function nextPageLink(bool $withBaseUrl): ?string; |
|
19 | + public function nextPageLink(bool $withBaseUrl): ?string; |
|
20 | 20 | |
21 | - public function nextPageNumber(): ?int; |
|
21 | + public function nextPageNumber(): ?int; |
|
22 | 22 | |
23 | - public function lastPageLink(bool $withBaseUrl): ?string; |
|
23 | + public function lastPageLink(bool $withBaseUrl): ?string; |
|
24 | 24 | |
25 | - public function lastPageNumber(); |
|
25 | + public function lastPageNumber(); |
|
26 | 26 | |
27 | - public function firstItem(); |
|
27 | + public function firstItem(); |
|
28 | 28 | |
29 | - public function lastItem(); |
|
29 | + public function lastItem(); |
|
30 | 30 | |
31 | - public function perPage(); |
|
31 | + public function perPage(); |
|
32 | 32 | |
33 | - public function total(); |
|
33 | + public function total(); |
|
34 | 34 | |
35 | - public function links(bool $withBaseUrl); |
|
35 | + public function links(bool $withBaseUrl); |
|
36 | 36 | |
37 | - public function data(); |
|
37 | + public function data(); |
|
38 | 38 | } |
@@ -11,67 +11,67 @@ |
||
11 | 11 | |
12 | 12 | class Paginator extends BasePaginator |
13 | 13 | { |
14 | - /** |
|
15 | - * @var SleekDbal |
|
16 | - */ |
|
17 | - private $dbal; |
|
14 | + /** |
|
15 | + * @var SleekDbal |
|
16 | + */ |
|
17 | + private $dbal; |
|
18 | 18 | |
19 | - /** |
|
20 | - * @var array |
|
21 | - */ |
|
22 | - public $data; |
|
19 | + /** |
|
20 | + * @var array |
|
21 | + */ |
|
22 | + public $data; |
|
23 | 23 | |
24 | - /** |
|
25 | - * @param $sleekDbal |
|
26 | - * @param int $perPage |
|
27 | - * @param int $page |
|
28 | - * @throws DatabaseException |
|
29 | - * @throws ModelException |
|
30 | - * @throws IOException |
|
31 | - * @throws InvalidArgumentException |
|
32 | - * @throws InvalidConfigurationException |
|
33 | - */ |
|
34 | - public function __construct($sleekDbal, int $perPage, int $page = 1) |
|
35 | - { |
|
36 | - /** @var SleekDbal $sleekDbal */ |
|
37 | - $this->total = count($sleekDbal->getBuilder()->getQuery()->fetch()); |
|
38 | - $this->dbal = $sleekDbal; |
|
39 | - $this->dbal->limit($perPage)->offset($perPage * ($page - 1)); |
|
40 | - $this->data = $this->dbal->getBuilder()->getQuery()->fetch(); |
|
41 | - $this->perPage = $perPage; |
|
42 | - $this->page = $page; |
|
43 | - $this->baseUrl = base_url(); |
|
44 | - } |
|
24 | + /** |
|
25 | + * @param $sleekDbal |
|
26 | + * @param int $perPage |
|
27 | + * @param int $page |
|
28 | + * @throws DatabaseException |
|
29 | + * @throws ModelException |
|
30 | + * @throws IOException |
|
31 | + * @throws InvalidArgumentException |
|
32 | + * @throws InvalidConfigurationException |
|
33 | + */ |
|
34 | + public function __construct($sleekDbal, int $perPage, int $page = 1) |
|
35 | + { |
|
36 | + /** @var SleekDbal $sleekDbal */ |
|
37 | + $this->total = count($sleekDbal->getBuilder()->getQuery()->fetch()); |
|
38 | + $this->dbal = $sleekDbal; |
|
39 | + $this->dbal->limit($perPage)->offset($perPage * ($page - 1)); |
|
40 | + $this->data = $this->dbal->getBuilder()->getQuery()->fetch(); |
|
41 | + $this->perPage = $perPage; |
|
42 | + $this->page = $page; |
|
43 | + $this->baseUrl = base_url(); |
|
44 | + } |
|
45 | 45 | |
46 | - /** |
|
47 | - * @return mixed |
|
48 | - */ |
|
49 | - public function firstItem() |
|
50 | - { |
|
51 | - return $this->data[array_key_first($this->data)]; |
|
52 | - } |
|
46 | + /** |
|
47 | + * @return mixed |
|
48 | + */ |
|
49 | + public function firstItem() |
|
50 | + { |
|
51 | + return $this->data[array_key_first($this->data)]; |
|
52 | + } |
|
53 | 53 | |
54 | - /** |
|
55 | - * @return mixed |
|
56 | - */ |
|
57 | - public function lastItem() |
|
58 | - { |
|
59 | - return $this->data[array_key_last($this->data)]; |
|
60 | - } |
|
54 | + /** |
|
55 | + * @return mixed |
|
56 | + */ |
|
57 | + public function lastItem() |
|
58 | + { |
|
59 | + return $this->data[array_key_last($this->data)]; |
|
60 | + } |
|
61 | 61 | |
62 | - /** |
|
63 | - * @return array|SleekDbal[] |
|
64 | - */ |
|
65 | - public function data(): array |
|
66 | - { |
|
67 | - $result = array_map(function ($element) { |
|
68 | - $item = clone $this->dbal; |
|
69 | - $item->setData($element); |
|
70 | - $item->setModifiedFields($element); |
|
71 | - $item->setIsNew(false); |
|
72 | - return $item; |
|
73 | - }, $this->data); |
|
62 | + /** |
|
63 | + * @return array|SleekDbal[] |
|
64 | + */ |
|
65 | + public function data(): array |
|
66 | + { |
|
67 | + $result = array_map(function ($element) { |
|
68 | + $item = clone $this->dbal; |
|
69 | + $item->setData($element); |
|
70 | + $item->setModifiedFields($element); |
|
71 | + $item->setIsNew(false); |
|
72 | + return $item; |
|
73 | + }, $this->data); |
|
74 | 74 | |
75 | - return $result ?? []; |
|
76 | - } |
|
75 | + return $result ?? []; |
|
76 | + } |
|
77 | 77 | } |
78 | 78 | \ No newline at end of file |
@@ -64,7 +64,7 @@ |
||
64 | 64 | */ |
65 | 65 | public function data(): array |
66 | 66 | { |
67 | - $result = array_map(function ($element) { |
|
67 | + $result = array_map(function($element) { |
|
68 | 68 | $item = clone $this->dbal; |
69 | 69 | $item->setData($element); |
70 | 70 | $item->setModifiedFields($element); |
@@ -169,7 +169,7 @@ |
||
169 | 169 | Debugger::updateStoreCell(Debugger::ROUTES, LogLevel::INFO, ['View' => current_module() . '/Views/' . $view]); |
170 | 170 | } |
171 | 171 | |
172 | - if(!empty($this->assets)) { |
|
172 | + if (!empty($this->assets)) { |
|
173 | 173 | AssetManager::getInstance()->register($this->assets); |
174 | 174 | } |
175 | 175 |
@@ -8,64 +8,64 @@ |
||
8 | 8 | |
9 | 9 | class Paginator extends BasePaginator |
10 | 10 | { |
11 | - /** |
|
12 | - * @var IdiormDbal |
|
13 | - */ |
|
14 | - private $dbal; |
|
11 | + /** |
|
12 | + * @var IdiormDbal |
|
13 | + */ |
|
14 | + private $dbal; |
|
15 | 15 | |
16 | - /** |
|
17 | - * @var array|IdiormResultSet |
|
18 | - */ |
|
19 | - public $data; |
|
16 | + /** |
|
17 | + * @var array|IdiormResultSet |
|
18 | + */ |
|
19 | + public $data; |
|
20 | 20 | |
21 | - /** |
|
22 | - * @param $idiormDbal |
|
23 | - * @param int $perPage |
|
24 | - * @param int $page |
|
25 | - * @throws DatabaseException |
|
26 | - */ |
|
27 | - public function __construct($idiormDbal, int $perPage, int $page = 1) |
|
28 | - { |
|
29 | - /** @var IdiormDbal $idiormDbal */ |
|
30 | - $this->total = $idiormDbal->getOrmModel()->count(); |
|
31 | - $this->dbal = $idiormDbal; |
|
32 | - $this->dbal->limit($perPage)->offset($perPage * ($page - 1)); |
|
33 | - $this->data = $this->dbal->getOrmModel()->find_many(); |
|
34 | - $this->perPage = $perPage; |
|
35 | - $this->page = $page; |
|
36 | - $this->baseUrl = base_dir(); |
|
37 | - } |
|
21 | + /** |
|
22 | + * @param $idiormDbal |
|
23 | + * @param int $perPage |
|
24 | + * @param int $page |
|
25 | + * @throws DatabaseException |
|
26 | + */ |
|
27 | + public function __construct($idiormDbal, int $perPage, int $page = 1) |
|
28 | + { |
|
29 | + /** @var IdiormDbal $idiormDbal */ |
|
30 | + $this->total = $idiormDbal->getOrmModel()->count(); |
|
31 | + $this->dbal = $idiormDbal; |
|
32 | + $this->dbal->limit($perPage)->offset($perPage * ($page - 1)); |
|
33 | + $this->data = $this->dbal->getOrmModel()->find_many(); |
|
34 | + $this->perPage = $perPage; |
|
35 | + $this->page = $page; |
|
36 | + $this->baseUrl = base_dir(); |
|
37 | + } |
|
38 | 38 | |
39 | - /** |
|
40 | - * @return mixed |
|
41 | - */ |
|
42 | - public function firstItem() |
|
43 | - { |
|
44 | - if (!is_array($this->data)){ |
|
45 | - $this->data = $this->data->as_array(); |
|
46 | - } |
|
47 | - return $this->data[array_key_first($this->data)]; |
|
48 | - } |
|
39 | + /** |
|
40 | + * @return mixed |
|
41 | + */ |
|
42 | + public function firstItem() |
|
43 | + { |
|
44 | + if (!is_array($this->data)){ |
|
45 | + $this->data = $this->data->as_array(); |
|
46 | + } |
|
47 | + return $this->data[array_key_first($this->data)]; |
|
48 | + } |
|
49 | 49 | |
50 | - /** |
|
51 | - * @return mixed |
|
52 | - */ |
|
53 | - public function lastItem() |
|
54 | - { |
|
55 | - if (!is_array($this->data)){ |
|
56 | - $this->data = $this->data->as_array(); |
|
57 | - } |
|
58 | - return $this->data[array_key_last($this->data)]; |
|
59 | - } |
|
50 | + /** |
|
51 | + * @return mixed |
|
52 | + */ |
|
53 | + public function lastItem() |
|
54 | + { |
|
55 | + if (!is_array($this->data)){ |
|
56 | + $this->data = $this->data->as_array(); |
|
57 | + } |
|
58 | + return $this->data[array_key_last($this->data)]; |
|
59 | + } |
|
60 | 60 | |
61 | - /** |
|
62 | - * @return array |
|
63 | - */ |
|
64 | - public function data() |
|
65 | - { |
|
66 | - if (!empty($this->data) && !is_array($this->data)){ |
|
67 | - $this->data = $this->data->as_array(); |
|
68 | - } |
|
69 | - return $this->data ?? []; |
|
70 | - } |
|
61 | + /** |
|
62 | + * @return array |
|
63 | + */ |
|
64 | + public function data() |
|
65 | + { |
|
66 | + if (!empty($this->data) && !is_array($this->data)){ |
|
67 | + $this->data = $this->data->as_array(); |
|
68 | + } |
|
69 | + return $this->data ?? []; |
|
70 | + } |
|
71 | 71 | } |
72 | 72 | \ No newline at end of file |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | */ |
42 | 42 | public function firstItem() |
43 | 43 | { |
44 | - if (!is_array($this->data)){ |
|
44 | + if (!is_array($this->data)) { |
|
45 | 45 | $this->data = $this->data->as_array(); |
46 | 46 | } |
47 | 47 | return $this->data[array_key_first($this->data)]; |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | */ |
53 | 53 | public function lastItem() |
54 | 54 | { |
55 | - if (!is_array($this->data)){ |
|
55 | + if (!is_array($this->data)) { |
|
56 | 56 | $this->data = $this->data->as_array(); |
57 | 57 | } |
58 | 58 | return $this->data[array_key_last($this->data)]; |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | */ |
64 | 64 | public function data() |
65 | 65 | { |
66 | - if (!empty($this->data) && !is_array($this->data)){ |
|
66 | + if (!empty($this->data) && !is_array($this->data)) { |
|
67 | 67 | $this->data = $this->data->as_array(); |
68 | 68 | } |
69 | 69 | return $this->data ?? []; |
@@ -40,7 +40,7 @@ |
||
40 | 40 | */ |
41 | 41 | public function get(): array |
42 | 42 | { |
43 | - return array_map(function ($element) { |
|
43 | + return array_map(function($element) { |
|
44 | 44 | $item = clone $this; |
45 | 45 | $item->data = $element; |
46 | 46 | $item->modifiedFields = $element; |
@@ -137,7 +137,7 @@ |
||
137 | 137 | */ |
138 | 138 | public function lastPageNumber(): int |
139 | 139 | { |
140 | - return (int)ceil($this->total() / $this->perPage); |
|
140 | + return (int) ceil($this->total() / $this->perPage); |
|
141 | 141 | } |
142 | 142 | |
143 | 143 | /** |