Passed
Push — master ( a11f07...4b44bb )
by Tim
02:10
created
src/SAML2/XML/mdattr/EntityAttributes.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/SAML2/XML/md/AbstractRoleDescriptorType.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
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,
Please login to merge, or discard this patch.