Completed
Push — IncomprehensibleFinder/koldo-x... ( 1ccc0f )
by Xavier Serrat
02:32
created
src/Algorithm/FinderCriteria.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/PeopleByAgeDifference.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/Finder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 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
 
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
         foreach ($this->peopleByAgeDifferenceCollection as $firstPerson) {
27 27
             /** @var Person $secondPerson */
28 28
             foreach ($this->peopleByAgeDifferenceCollection as $secondPerson) {
29
-                if ($firstPerson->equals($secondPerson)){
29
+                if ($firstPerson->equals($secondPerson)) {
30 30
                     continue;
31 31
                 }
32 32
                 $peopleByAgeDifference = new PeopleByAgeDifference();
Please login to merge, or discard this patch.