@@ -22,7 +22,7 @@ |
||
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, |
@@ -21,7 +21,7 @@ |
||
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; |
@@ -37,7 +37,7 @@ |
||
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, |