Passed
Push — master ( b45cb1...03e5ee )
by Alec
03:46 queued 01:44
created
src/Spinner/Core/WidthDeterminer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,11 +28,11 @@
 block discarded – undo
28 28
     private static function createDeterminer(): Closure
29 29
     {
30 30
         if (function_exists('\AlecRabbit\WCWidth\wcswidth')) {
31
-            return static function (string $string): int {
31
+            return static function(string $string): int {
32 32
                 return wcswidth($string);
33 33
             };
34 34
         }
35
-        return static function (string $string): int {
35
+        return static function(string $string): int {
36 36
             return mb_strlen($string);
37 37
         };
38 38
     }
Please login to merge, or discard this patch.