Passed
Push — main ( f4ac71...563f80 )
by Breno
01:47
created
src/DataStructure/CollectionTrait.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
         }
19 19
     }
20 20
 
21
-    public function get(string|int $index, $default = null): mixed
21
+    public function get(string | int $index, $default = null): mixed
22 22
     {
23 23
         return $this->elements[$index] ?? $default;
24 24
     }
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
         return true;
45 45
     }
46 46
 
47
-    public function indexOf(mixed $element): bool|int|string
47
+    public function indexOf(mixed $element): bool | int | string
48 48
     {
49 49
         return array_search($element, $this->elements, true);
50 50
     }
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
         return $this;
98 98
     }
99 99
 
100
-    public function forEach(callable $callback, bool $stopable = false): static
100
+    public function forEach (callable $callback, bool $stopable = false): static
101 101
     {
102 102
         foreach ($this->elements as $index => $element) {
103 103
             $result = call_user_func_array($callback, [$element, $index]);
Please login to merge, or discard this patch.
src/RuleSetFactory.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
      * @return RuleSet[]
17 17
      * @throws ReflectionException if the class does not exist
18 18
      */
19
-    public static function fromProperties(string|object $objectOrClass, ?int $filter = null): array
19
+    public static function fromProperties(string | object $objectOrClass, ?int $filter = null): array
20 20
     {
21 21
         $ruleSets = [];
22 22
         foreach ((new ReflectionClass($objectOrClass))->getProperties($filter) as $property) {
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      * @return RuleSet[]
33 33
      * @throws ReflectionException
34 34
      */
35
-    public static function fromMethods(string|object $objectOrClass, ?int $filter = null): array
35
+    public static function fromMethods(string | object $objectOrClass, ?int $filter = null): array
36 36
     {
37 37
         $ruleSets = [];
38 38
         foreach ((new ReflectionClass($objectOrClass))->getMethods($filter) as $method) {
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      * @return RuleSet
49 49
      * @throws ReflectionException if the class or property does not exist.
50 50
      */
51
-    public static function fromProperty(string|object $objectOrClass, string $property): RuleSet
51
+    public static function fromProperty(string | object $objectOrClass, string $property): RuleSet
52 52
     {
53 53
         return self::fromReflectionProperty(new ReflectionProperty($objectOrClass, $property));
54 54
     }
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
      * @return RuleSet
60 60
      * @throws ReflectionException
61 61
      */
62
-    public static function fromMethod(string|object $objectOrClass, string $method): RuleSet
62
+    public static function fromMethod(string | object $objectOrClass, string $method): RuleSet
63 63
     {
64 64
         return self::fromReflectionMethod(new ReflectionMethod($objectOrClass, $method));
65 65
     }
Please login to merge, or discard this patch.
src/Validator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      * @param Rule|RuleSet ...$rules
33 33
      * @return $this
34 34
      */
35
-    public function field(string $field, Rule|RuleSet ...$rules): self
35
+    public function field(string $field, Rule | RuleSet ...$rules): self
36 36
     {
37 37
         $ruleSet = $this->ruleSets[$field] ?? RuleSet::forField($field);
38 38
         $this->ruleSets[$field] = $ruleSet->add(...$rules);
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      * @return static
118 118
      * @throws ReflectionException if the class does not exist
119 119
      */
120
-    public static function fromProperties(string|object $objectOrClass, ?int $filter = null): self
120
+    public static function fromProperties(string | object $objectOrClass, ?int $filter = null): self
121 121
     {
122 122
         $instance = new self;
123 123
         $instance->ruleSets = RuleSetFactory::fromProperties($objectOrClass, $filter);
Please login to merge, or discard this patch.
src/GuardForValidation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 {
8 8
     public function validateOrFail($input, array $context = [], ?string $message = null): void
9 9
     {
10
-        if (! $this instanceof Rule) {
10
+        if (!$this instanceof Rule) {
11 11
             return;
12 12
         }
13 13
 
Please login to merge, or discard this patch.
src/Factories/ComparisonFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 
10 10
 trait ComparisonFactory
11 11
 {
12
-    abstract public function add(Rule|RuleSet ...$rules): RuleSet;
12
+    abstract public function add(Rule | RuleSet ...$rules): RuleSet;
13 13
 
14 14
     public function equal($value, ?string $message = null): RuleSet
15 15
     {
Please login to merge, or discard this patch.
src/RuleSet.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     /**
25 25
      * @throws ValidationException if the field is provided and is blank
26 26
      */
27
-    final public function __construct(?string $field = null, Rule|RuleSet ...$rules)
27
+    final public function __construct(?string $field = null, Rule | RuleSet ...$rules)
28 28
     {
29 29
         $this->rules = new SplObjectStorage;
30 30
         $this->field = $field;
@@ -36,17 +36,17 @@  discard block
 block discarded – undo
36 36
         return new self;
37 37
     }
38 38
 
39
-    public static function forField(string $field, Rule|RuleSet ...$rules): self
39
+    public static function forField(string $field, Rule | RuleSet ...$rules): self
40 40
     {
41 41
         return new self($field, ...$rules);
42 42
     }
43 43
 
44
-    public static function withRules(Rule|RuleSet ...$rules): self
44
+    public static function withRules(Rule | RuleSet ...$rules): self
45 45
     {
46 46
         return new self(null, ...$rules);
47 47
     }
48 48
 
49
-    private function attachRules(Rule|RuleSet ...$rules): void
49
+    private function attachRules(Rule | RuleSet ...$rules): void
50 50
     {
51 51
         foreach ($rules as $validationOrSet) {
52 52
             if ($validationOrSet instanceof Rule) {
@@ -61,14 +61,14 @@  discard block
 block discarded – undo
61 61
         }
62 62
     }
63 63
 
64
-    public function add(Rule|RuleSet ...$rules): self
64
+    public function add(Rule | RuleSet ...$rules): self
65 65
     {
66 66
         $instance = clone $this;
67 67
         $instance->attachRules(...$rules);
68 68
         return $instance;
69 69
     }
70 70
 
71
-    public function validate(mixed $input, array $context = []): ValidationResult|ValidationResultByField
71
+    public function validate(mixed $input, array $context = []): ValidationResult | ValidationResultByField
72 72
     {
73 73
         $violations = $empty = $this->newEmptyValidationResult();
74 74
         if (!$this->shouldValidate($input)) {
Please login to merge, or discard this patch.