Completed
Push — master ( 1358d6...984c1e )
by Karsten
01:40
created
src/PsiFactoryImpl.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
         $count = count($iteratables);
35 35
 
36 36
         if ($count === 1) {
37
-            return $this->createSingleIterator($iteratables[0]);
37
+            return $this->createSingleIterator($iteratables[ 0 ]);
38 38
         }
39 39
 
40 40
         if ($count > 1) {
Please login to merge, or discard this patch.
src/Psi/Str/ToLower.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      */
22 22
     public function __invoke($input)
23 23
     {
24
-        if (! is_scalar($input)) {
24
+        if ( ! is_scalar($input)) {
25 25
             return null;
26 26
         }
27 27
 
Please login to merge, or discard this patch.
src/Psi/Str/ToUpper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      */
22 22
     public function __invoke($input)
23 23
     {
24
-        if (! is_scalar($input)) {
24
+        if ( ! is_scalar($input)) {
25 25
             return null;
26 26
         }
27 27
 
Please login to merge, or discard this patch.