Completed
Push — new-version ( 9f5ea1...ec9fbc )
by Jeroen
02:24
created
src/VCard.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
         if ($node instanceof PropertyInterface) {
57 57
             $this->addProperty($node);
58
-        } elseif($node instanceof PropertyParameterInterface) {
58
+        } elseif ($node instanceof PropertyParameterInterface) {
59 59
             $this->addPropertyParameter($node);
60 60
         }
61 61
 
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
             return $this->parameters;
92 92
         }
93 93
 
94
-        return array_filter($this->parameters, function (PropertyParameterInterface $parameter) use ($filterByPropertyParameterClass) {
94
+        return array_filter($this->parameters, function(PropertyParameterInterface $parameter) use ($filterByPropertyParameterClass) {
95 95
             return $parameter instanceof $filterByPropertyParameterClass;
96 96
         });
97 97
     }
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
             return $this->properties;
103 103
         }
104 104
 
105
-        return array_filter($this->properties, function (PropertyInterface $property) use ($filterByPropertyClass) {
105
+        return array_filter($this->properties, function(PropertyInterface $property) use ($filterByPropertyClass) {
106 106
             return $property instanceof $filterByPropertyClass;
107 107
         });
108 108
     }
Please login to merge, or discard this patch.