Completed
Push — master ( 40ae98...4c3748 )
by Lars
01:59
created
src/TypeCheck/AbstractTypeCheck.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -82,32 +82,32 @@
 block discarded – undo
82 82
                \gettype($value) === (self::$typeMapping[$type] ?? $type)
83 83
                ||
84 84
                (
85
-                   $type === 'scalar'
85
+                    $type === 'scalar'
86 86
                     &&
87 87
                     \is_scalar($value)
88
-               )
88
+                )
89 89
                ||
90 90
                (
91
-                   $type === 'callable'
91
+                    $type === 'callable'
92 92
                    &&
93 93
                    \is_callable($value)
94
-               )
94
+                )
95 95
                ||
96 96
                (
97
-                   $type === 'numeric'
97
+                    $type === 'numeric'
98 98
                    &&
99 99
                    (
100
-                       \is_float($value)
100
+                        \is_float($value)
101 101
                        ||
102 102
                        \is_int($value)
103
-                   )
104
-               )
103
+                    )
104
+                )
105 105
                ||
106 106
                (
107
-                   $type === 'resource'
107
+                    $type === 'resource'
108 108
                    &&
109 109
                    \is_resource($value)
110
-               );
110
+                );
111 111
     }
112 112
 
113 113
     /**
Please login to merge, or discard this patch.
src/Arrayy.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1525,11 +1525,11 @@  discard block
 block discarded – undo
1525 1525
             ),
1526 1526
             \COUNT_NORMAL
1527 1527
         )
1528
-               ===
1529
-               \count(
1530
-                   $needles,
1531
-                   \COUNT_NORMAL
1532
-               );
1528
+                ===
1529
+                \count(
1530
+                    $needles,
1531
+                    \COUNT_NORMAL
1532
+                );
1533 1533
     }
1534 1534
 
1535 1535
     /**
@@ -3459,15 +3459,15 @@  discard block
 block discarded – undo
3459 3459
 
3460 3460
         if ($recursive === true) {
3461 3461
             return $this->array_keys_recursive($this->toArray())
3462
-                   ===
3463
-                   \range(0, \count($this->toArray(), \COUNT_RECURSIVE) - 1);
3462
+                    ===
3463
+                    \range(0, \count($this->toArray(), \COUNT_RECURSIVE) - 1);
3464 3464
         }
3465 3465
 
3466 3466
         // non recursive
3467 3467
 
3468 3468
         return \array_keys($this->toArray())
3469
-               ===
3470
-               \range(0, \count($this->toArray(), \COUNT_NORMAL) - 1);
3469
+                ===
3470
+                \range(0, \count($this->toArray(), \COUNT_NORMAL) - 1);
3471 3471
     }
3472 3472
 
3473 3473
     /**
Please login to merge, or discard this patch.