@@ -55,7 +55,7 @@ discard block |
||
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 |
||
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 |
||
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 | } |