Passed
Pull Request — master (#409)
by Sergei
02:53
created
src/Rule/Callback.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 /**
21 21
  * @psalm-import-type WhenType from WhenInterface
22 22
  */
23
-#[Attribute(Attribute::TARGET_PROPERTY | Attribute::IS_REPEATABLE)]
23
+#[Attribute(Attribute::TARGET_PROPERTY|Attribute::IS_REPEATABLE)]
24 24
 final class Callback implements
25 25
     RuleWithOptionsInterface,
26 26
     SkipOnErrorInterface,
Please login to merge, or discard this patch.
src/Rule/LessThan.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
  * @psalm-import-type WhenType from WhenInterface
23 23
  */
24
-#[Attribute(Attribute::TARGET_PROPERTY | Attribute::IS_REPEATABLE)]
24
+#[Attribute(Attribute::TARGET_PROPERTY|Attribute::IS_REPEATABLE)]
25 25
 final class LessThan extends Compare
26 26
 {
27 27
     public function __construct(
Please login to merge, or discard this patch.
src/Rule/Email.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
  *
24 24
  * @psalm-import-type WhenType from WhenInterface
25 25
  */
26
-#[Attribute(Attribute::TARGET_PROPERTY | Attribute::IS_REPEATABLE)]
26
+#[Attribute(Attribute::TARGET_PROPERTY|Attribute::IS_REPEATABLE)]
27 27
 final class Email implements RuleWithOptionsInterface, SkipOnErrorInterface, WhenInterface, SkipOnEmptyInterface
28 28
 {
29 29
     use SkipOnEmptyTrait;
Please login to merge, or discard this patch.
src/Rule/HasLength.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
  *
24 24
  * @psalm-import-type WhenType from WhenInterface
25 25
  */
26
-#[Attribute(Attribute::TARGET_PROPERTY | Attribute::IS_REPEATABLE)]
26
+#[Attribute(Attribute::TARGET_PROPERTY|Attribute::IS_REPEATABLE)]
27 27
 final class HasLength implements
28 28
     RuleWithOptionsInterface,
29 29
     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
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
  *
23 23
  * @psalm-import-type WhenType from WhenInterface
24 24
  */
25
-#[Attribute(Attribute::TARGET_PROPERTY | Attribute::IS_REPEATABLE)]
25
+#[Attribute(Attribute::TARGET_PROPERTY|Attribute::IS_REPEATABLE)]
26 26
 class Composite implements RuleWithOptionsInterface, SkipOnErrorInterface, WhenInterface, SkipOnEmptyInterface
27 27
 {
28 28
     use SkipOnEmptyTrait;
Please login to merge, or discard this patch.
src/Rule/GreaterThanOrEqual.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
  * @psalm-import-type WhenType from WhenInterface
23 23
  */
24
-#[Attribute(Attribute::TARGET_PROPERTY | Attribute::IS_REPEATABLE)]
24
+#[Attribute(Attribute::TARGET_PROPERTY|Attribute::IS_REPEATABLE)]
25 25
 final class GreaterThanOrEqual extends Compare
26 26
 {
27 27
     public function __construct(
Please login to merge, or discard this patch.
src/Rule/Number.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
  *
24 24
  * @psalm-import-type WhenType from WhenInterface
25 25
  */
26
-#[Attribute(Attribute::TARGET_PROPERTY | Attribute::IS_REPEATABLE)]
26
+#[Attribute(Attribute::TARGET_PROPERTY|Attribute::IS_REPEATABLE)]
27 27
 final class Number implements RuleWithOptionsInterface, SkipOnErrorInterface, WhenInterface, SkipOnEmptyInterface
28 28
 {
29 29
     use SkipOnEmptyTrait;
Please login to merge, or discard this patch.
src/Rule/LessThanOrEqual.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
  * @psalm-import-type WhenType from WhenInterface
23 23
  */
24
-#[Attribute(Attribute::TARGET_PROPERTY | Attribute::IS_REPEATABLE)]
24
+#[Attribute(Attribute::TARGET_PROPERTY|Attribute::IS_REPEATABLE)]
25 25
 final class LessThanOrEqual extends Compare
26 26
 {
27 27
     public function __construct(
Please login to merge, or discard this patch.
src/Rule/Regex.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
  * @psalm-import-type WhenType from WhenInterface
24 24
  */
25
-#[Attribute(Attribute::TARGET_PROPERTY | Attribute::IS_REPEATABLE)]
25
+#[Attribute(Attribute::TARGET_PROPERTY|Attribute::IS_REPEATABLE)]
26 26
 final class Regex implements RuleWithOptionsInterface, SkipOnErrorInterface, WhenInterface, SkipOnEmptyInterface
27 27
 {
28 28
     use SkipOnEmptyTrait;
Please login to merge, or discard this patch.