Completed
Push — IncomprehensibleFinder/SandraA... ( c60dee )
by Albert
02:20
created
src/Algorithm/Person.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Kata\Algorithm;
6 6
 
Please login to merge, or discard this patch.
src/Core/IndexedByPrimitiveCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
 
28 28
         if (!$an_item instanceof $valid_class) {
29 29
             throw new \InvalidArgumentException(
30
-                "You must specify an array of instances of '$valid_class' instead of '" . \get_class($an_item) . "' while creating a '" . static::class . "'."
30
+                "You must specify an array of instances of '$valid_class' instead of '".\get_class($an_item)."' while creating a '".static::class."'."
31 31
             );
32 32
         }
33 33
     }
Please login to merge, or discard this patch.
src/Algorithm/FindCoupleByAgeDifference.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Kata\Algorithm;
6 6
 
Please login to merge, or discard this patch.
src/Algorithm/Couple.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Kata\Algorithm;
6 6
 
Please login to merge, or discard this patch.
src/Algorithm/AgeDifferenceCriteria.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Kata\Algorithm;
6 6
 
Please login to merge, or discard this patch.