Completed
Push — master ( f11337...38bba2 )
by Kevin
02:15
created
src/Pager/ResultPager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,11 +24,11 @@
 block discarded – undo
24 24
      */
25 25
     public function __construct(Result $result, $page = 1, $limit = self::DEFAULT_LIMIT)
26 26
     {
27
-        if (!is_numeric($page)) {
27
+        if ( ! is_numeric($page)) {
28 28
             $page = 1;
29 29
         }
30 30
 
31
-        if (!is_numeric($limit)) {
31
+        if ( ! is_numeric($limit)) {
32 32
             $limit = self::DEFAULT_LIMIT;
33 33
         }
34 34
 
Please login to merge, or discard this patch.