Completed
Push — master ( 60ba82...3faa93 )
by Peter
29s
created
src/WoocommerceClient.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
      */
120 120
     public function currentPage()
121 121
     {
122
-        return ! empty($this->getRequest()->getParameters()['page']) ? $this->getRequest()->getParameters()['page'] : 1;
122
+        return !empty($this->getRequest()->getParameters()['page']) ? $this->getRequest()->getParameters()['page'] : 1;
123 123
     }
124 124
 
125 125
     /**
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
      */
202 202
     public function hasNotNextPage()
203 203
     {
204
-        return (bool) ! $this->nextPage();
204
+        return (bool) !$this->nextPage();
205 205
     }
206 206
 
207 207
     /**
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
      */
212 212
     public function hasNotPreviousPage()
213 213
     {
214
-        return (bool) ! $this->previousPage();
214
+        return (bool) !$this->previousPage();
215 215
     }
216 216
 
217 217
     /**
Please login to merge, or discard this patch.