Passed
Pull Request — master (#403)
by Sergei
03:30
created
src/Rule/Each.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 /**
23 23
  * Validates an array by checking each of its elements against a set of rules.
24 24
  */
25
-#[Attribute(Attribute::TARGET_PROPERTY | Attribute::IS_REPEATABLE)]
25
+#[Attribute(Attribute::TARGET_PROPERTY|Attribute::IS_REPEATABLE)]
26 26
 final class Each implements
27 27
     SerializableRuleInterface,
28 28
     SkipOnErrorInterface,
Please login to merge, or discard this patch.
src/Rule/Composite.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 /**
22 22
  * Allows to combine and validate multiple rules.
23 23
  */
24
-#[Attribute(Attribute::TARGET_PROPERTY | Attribute::IS_REPEATABLE)]
24
+#[Attribute(Attribute::TARGET_PROPERTY|Attribute::IS_REPEATABLE)]
25 25
 class Composite implements SerializableRuleInterface, SkipOnErrorInterface, WhenInterface, SkipOnEmptyInterface
26 26
 {
27 27
     use SkipOnEmptyTrait;
Please login to merge, or discard this patch.
src/Rule/Nested.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
 /**
38 38
  * Can be used for validation of nested structures.
39 39
  */
40
-#[Attribute(Attribute::TARGET_PROPERTY | Attribute::IS_REPEATABLE)]
40
+#[Attribute(Attribute::TARGET_PROPERTY|Attribute::IS_REPEATABLE)]
41 41
 final class Nested implements
42 42
     SerializableRuleInterface,
43 43
     SkipOnErrorInterface,
Please login to merge, or discard this patch.