Passed
Push — master ( b45d6c...0b4471 )
by Eric
01:56
created
src/Paginator.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -62,12 +62,12 @@  discard block
 block discarded – undo
62 62
     /**
63 63
      * A callback that is used to determine the total number of items in your collection (returned as an integer).
64 64
      */
65
-    private ?Closure $itemTotalCallback   = null;
65
+    private ?Closure $itemTotalCallback = null;
66 66
 
67 67
     /**
68 68
      * A callback to slice your collection given an offset and length argument.
69 69
      */
70
-    private ?Closure $sliceCallback       = null;
70
+    private ?Closure $sliceCallback = null;
71 71
 
72 72
     /**
73 73
      * A callback to run before the count and slice queries.
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
     /**
78 78
      * A callback to run after the count and slice queries.
79 79
      */
80
-    private ?Closure $afterQueryCallback  = null;
80
+    private ?Closure $afterQueryCallback = null;
81 81
 
82 82
     /**
83 83
      * Number of items to include per page.
@@ -316,7 +316,7 @@  discard block
 block discarded – undo
316 316
             return $this->beforeQueryCallback;
317 317
         }
318 318
 
319
-        return static function (): void {};
319
+        return static function(): void {};
320 320
     }
321 321
 
322 322
     /**
@@ -327,7 +327,7 @@  discard block
 block discarded – undo
327 327
             return $this->afterQueryCallback;
328 328
         }
329 329
 
330
-        return static function (): void {};
330
+        return static function(): void {};
331 331
     }
332 332
 
333 333
     /**
Please login to merge, or discard this patch.