Passed
Branch 2.0.0-dev (9fc37f)
by Jeroen
02:57
created
src/Parser/VcfParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      */
34 34
     public function getVCards(string $content): array
35 35
     {
36
-        return array_map(function ($vCardContent) {
36
+        return array_map(function($vCardContent) {
37 37
             return $this->parseVCard($vCardContent);
38 38
         }, $this->splitIntoVCards($content));
39 39
     }
Please login to merge, or discard this patch.
src/VCard.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
             return $this->parameters;
143 143
         }
144 144
 
145
-        return array_filter($this->parameters, function (PropertyParameterInterface $parameter) use ($filterByPropertyParameterClass) {
145
+        return array_filter($this->parameters, function(PropertyParameterInterface $parameter) use ($filterByPropertyParameterClass) {
146 146
             return $parameter instanceof $filterByPropertyParameterClass;
147 147
         });
148 148
     }
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
             return $this->properties;
154 154
         }
155 155
 
156
-        return array_filter($this->properties, function (PropertyInterface $property) use ($forPropertyClass) {
156
+        return array_filter($this->properties, function(PropertyInterface $property) use ($forPropertyClass) {
157 157
             return $property instanceof $forPropertyClass;
158 158
         });
159 159
     }
Please login to merge, or discard this patch.