@@ -89,8 +89,8 @@ discard block |
||
89 | 89 | if (!$this->inputs[$this->pagerKey]) { |
90 | 90 | return $page; |
91 | 91 | } |
92 | - if ((int) $this->inputs[$this->pagerKey] > 0) { |
|
93 | - return (int) $this->inputs[$this->pagerKey]; |
|
92 | + if ((int)$this->inputs[$this->pagerKey] > 0) { |
|
93 | + return (int)$this->inputs[$this->pagerKey]; |
|
94 | 94 | } |
95 | 95 | return $page; |
96 | 96 | } |
@@ -200,7 +200,7 @@ discard block |
||
200 | 200 | return $this->path; |
201 | 201 | } |
202 | 202 | $page = (int)$page; |
203 | - return $this->path . '?' . $this->pagerKey . '=' . $page; |
|
203 | + return $this->path.'?'.$this->pagerKey.'='.$page; |
|
204 | 204 | } |
205 | 205 | |
206 | 206 | /** |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | { |
219 | 219 | $class = $this->defaultToHtml; |
220 | 220 | $toHtml = new $class(Paginate::forge($this)); |
221 | - return (string) $toHtml; |
|
221 | + return (string)$toHtml; |
|
222 | 222 | } |
223 | 223 | |
224 | 224 | /** |