@@ -40,7 +40,7 @@ |
||
| 40 | 40 | Assert::maxCount($children, C::UNBOUNDED_LIMIT); |
| 41 | 41 | Assert::allIsInstanceOfAny($children, [Assertion::class, Attribute::class]); |
| 42 | 42 | |
| 43 | - $assertions = array_filter($children, function ($child) { |
|
| 43 | + $assertions = array_filter($children, function($child) { |
|
| 44 | 44 | return $child instanceof Assertion; |
| 45 | 45 | }); |
| 46 | 46 | |
@@ -69,7 +69,7 @@ |
||
| 69 | 69 | ContactPerson::class, |
| 70 | 70 | 'All contacts must be an instance of md:ContactPerson', |
| 71 | 71 | ); |
| 72 | - Assert::maxCount($keyDescriptor, C::UNBOUNDED_LIMIT); |
|
| 72 | + Assert::maxCount($keyDescriptor, C::UNBOUNDED_LIMIT); |
|
| 73 | 73 | Assert::allIsInstanceOf( |
| 74 | 74 | $keyDescriptor, |
| 75 | 75 | KeyDescriptor::class, |