Passed
Pull Request — master (#402)
by
unknown
03:08
created
src/Rule/AtLeast.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
  *
20 20
  * @psalm-import-type WhenType from WhenInterface
21 21
  */
22
-#[Attribute(Attribute::TARGET_PROPERTY | Attribute::IS_REPEATABLE)]
22
+#[Attribute(Attribute::TARGET_PROPERTY|Attribute::IS_REPEATABLE)]
23 23
 final class AtLeast implements RuleWithOptionsInterface, SkipOnErrorInterface, WhenInterface, SkipOnEmptyInterface
24 24
 {
25 25
     use SkipOnEmptyTrait;
Please login to merge, or discard this patch.
src/Rule/GreaterThan.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 GreaterThan extends Compare
26 26
 {
27 27
     public function __construct(
Please login to merge, or discard this patch.
src/Rule/Equal.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 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 Equal extends Compare
26 26
 {
27 27
     public function __construct(
@@ -69,9 +69,9 @@  discard block
 block discarded – undo
69 69
             message: $this->message,
70 70
             type: $this->type,
71 71
             operator: $this->strict ? '===' : '==',
72
-            skipOnEmpty: $skipOnEmpty,
73
-            skipOnError: $this->skipOnError,
74
-            when: $this->when,
72
+            skipOnEmpty : $skipOnEmpty,
73
+            skipOnError : $this->skipOnError,
74
+            when : $this->when,
75 75
         );
76 76
     }
77 77
 
Please login to merge, or discard this patch.
src/Rule/Subset.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 /**
18 18
  * @psalm-import-type WhenType from WhenInterface
19 19
  */
20
-#[Attribute(Attribute::TARGET_PROPERTY | Attribute::IS_REPEATABLE)]
20
+#[Attribute(Attribute::TARGET_PROPERTY|Attribute::IS_REPEATABLE)]
21 21
 final class Subset implements RuleWithOptionsInterface, SkipOnErrorInterface, WhenInterface, SkipOnEmptyInterface
22 22
 {
23 23
     use SkipOnEmptyTrait;
Please login to merge, or discard this patch.
src/Rule/StopOnError.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 StopOnError implements RuleWithOptionsInterface, SkipOnErrorInterface, WhenInterface, SkipOnEmptyInterface
27 27
 {
28 28
     use SkipOnEmptyTrait;
Please login to merge, or discard this patch.
src/Rule/Ip.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
  *
27 27
  * @psalm-import-type WhenType from WhenInterface
28 28
  */
29
-#[Attribute(Attribute::TARGET_PROPERTY | Attribute::IS_REPEATABLE)]
29
+#[Attribute(Attribute::TARGET_PROPERTY|Attribute::IS_REPEATABLE)]
30 30
 final class Ip implements RuleWithOptionsInterface, SkipOnErrorInterface, WhenInterface, SkipOnEmptyInterface
31 31
 {
32 32
     use SkipOnEmptyTrait;
Please login to merge, or discard this patch.
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.