Passed
Pull Request — master (#5)
by
unknown
08:15
created
src/Geography/Address/District.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
 
38 38
     public function equals(?ValueObject $object) : bool
39 39
     {
40
-        if (! $object instanceof self) {
40
+        if (!$object instanceof self) {
41 41
             return false;
42 42
         }
43 43
 
Please login to merge, or discard this patch.
src/Geography/Address/Physical/MessyPhysicalAddress.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -88,9 +88,9 @@
 block discarded – undo
88 88
 
89 89
     public function getAddress() : string
90 90
     {
91
-        $messyAddress =  $this->messyAddress;
91
+        $messyAddress = $this->messyAddress;
92 92
 
93
-        $notNull = array_filter([$this->city, $this->region, $this->country], function ($element) {
93
+        $notNull = array_filter([$this->city, $this->region, $this->country], function($element) {
94 94
             return $element !== null;
95 95
         });
96 96
 
Please login to merge, or discard this patch.
src/Geography/Address/PostalCode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
 
38 38
     public function equals(?ValueObject $object) : bool
39 39
     {
40
-        if (! $object instanceof self) {
40
+        if (!$object instanceof self) {
41 41
             return false;
42 42
         }
43 43
 
Please login to merge, or discard this patch.
src/Geography/Address/City.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
 
38 38
     public function equals(?ValueObject $object) : bool
39 39
     {
40
-        if (! $object instanceof self) {
40
+        if (!$object instanceof self) {
41 41
             return false;
42 42
         }
43 43
 
Please login to merge, or discard this patch.