@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | return $this->parameters; |
| 80 | 80 | } |
| 81 | 81 | |
| 82 | - return array_filter($this->parameters, function (PropertyParameterInterface $parameter) use ($filterByPropertyParameterClass) { |
|
| 82 | + return array_filter($this->parameters, function(PropertyParameterInterface $parameter) use ($filterByPropertyParameterClass) { |
|
| 83 | 83 | return $parameter instanceof $filterByPropertyParameterClass; |
| 84 | 84 | }); |
| 85 | 85 | } |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | return $this->properties; |
| 91 | 91 | } |
| 92 | 92 | |
| 93 | - return array_filter($this->properties, function (PropertyInterface $property) use ($filterByPropertyClass) { |
|
| 93 | + return array_filter($this->properties, function(PropertyInterface $property) use ($filterByPropertyClass) { |
|
| 94 | 94 | return $property instanceof $filterByPropertyClass; |
| 95 | 95 | }); |
| 96 | 96 | } |
@@ -33,7 +33,7 @@ |
||
| 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 | } |