Completed
Push — master ( 6366df...fbe022 )
by Kirill
23s queued 19s
created
src/Validation/src/Condition/WithAllCondition.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,8 @@
 block discarded – undo
27 27
      */
28 28
     public function isMet(ValidatorInterface $validator, string $field, $value): bool
29 29
     {
30
-        foreach ($this->options as $option) {
31
-            if (empty($validator->getValue($option))) {
30
+        foreach ($this->options as $option){
31
+            if (empty($validator->getValue($option))){
32 32
                 return false;
33 33
             }
34 34
         }
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,10 @@
 block discarded – undo
27 27
      */
28 28
     public function isMet(ValidatorInterface $validator, string $field, $value): bool
29 29
     {
30
-        foreach ($this->options as $option) {
31
-            if (empty($validator->getValue($option))) {
30
+        foreach ($this->options as $option)
31
+        {
32
+            if (empty($validator->getValue($option)))
33
+            {
32 34
                 return false;
33 35
             }
34 36
         }
Please login to merge, or discard this patch.
src/Validation/src/Condition/PresentCondition.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,8 @@
 block discarded – undo
27 27
      */
28 28
     public function isMet(ValidatorInterface $validator, string $field, $value): bool
29 29
     {
30
-        foreach ($this->options as $option) {
31
-            if (!$validator->hasValue($option)) {
30
+        foreach ($this->options as $option){
31
+            if (!$validator->hasValue($option)){
32 32
                 return false;
33 33
             }
34 34
         }
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,10 @@
 block discarded – undo
27 27
      */
28 28
     public function isMet(ValidatorInterface $validator, string $field, $value): bool
29 29
     {
30
-        foreach ($this->options as $option) {
31
-            if (!$validator->hasValue($option)) {
30
+        foreach ($this->options as $option)
31
+        {
32
+            if (!$validator->hasValue($option))
33
+            {
32 34
                 return false;
33 35
             }
34 36
         }
Please login to merge, or discard this patch.
src/Validation/src/Condition/AnyOfCondition.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,12 +32,12 @@
 block discarded – undo
32 32
      */
33 33
     public function isMet(ValidatorInterface $validator, string $field, $value): bool
34 34
     {
35
-        if (empty($this->options)) {
35
+        if (empty($this->options)){
36 36
             return true;
37 37
         }
38 38
 
39
-        foreach ($this->compositor->makeConditions($field, $this->options) as $condition) {
40
-            if ($condition->isMet($validator, $field, $value)) {
39
+        foreach ($this->compositor->makeConditions($field, $this->options) as $condition){
40
+            if ($condition->isMet($validator, $field, $value)){
41 41
                 return true;
42 42
             }
43 43
         }
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,12 +32,15 @@
 block discarded – undo
32 32
      */
33 33
     public function isMet(ValidatorInterface $validator, string $field, $value): bool
34 34
     {
35
-        if (empty($this->options)) {
35
+        if (empty($this->options))
36
+        {
36 37
             return true;
37 38
         }
38 39
 
39
-        foreach ($this->compositor->makeConditions($field, $this->options) as $condition) {
40
-            if ($condition->isMet($validator, $field, $value)) {
40
+        foreach ($this->compositor->makeConditions($field, $this->options) as $condition)
41
+        {
42
+            if ($condition->isMet($validator, $field, $value))
43
+            {
41 44
                 return true;
42 45
             }
43 46
         }
Please login to merge, or discard this patch.
src/Validation/src/Condition/WithAnyCondition.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,8 @@
 block discarded – undo
27 27
      */
28 28
     public function isMet(ValidatorInterface $validator, string $field, $value): bool
29 29
     {
30
-        foreach ($this->options as $option) {
31
-            if (!empty($validator->getValue($option))) {
30
+        foreach ($this->options as $option){
31
+            if (!empty($validator->getValue($option))){
32 32
                 return true;
33 33
             }
34 34
         }
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,10 @@
 block discarded – undo
27 27
      */
28 28
     public function isMet(ValidatorInterface $validator, string $field, $value): bool
29 29
     {
30
-        foreach ($this->options as $option) {
31
-            if (!empty($validator->getValue($option))) {
30
+        foreach ($this->options as $option)
31
+        {
32
+            if (!empty($validator->getValue($option)))
33
+            {
32 34
                 return true;
33 35
             }
34 36
         }
Please login to merge, or discard this patch.
src/Validation/src/Condition/AbsentCondition.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,8 @@
 block discarded – undo
27 27
      */
28 28
     public function isMet(ValidatorInterface $validator, string $field, $value): bool
29 29
     {
30
-        foreach ($this->options as $option) {
31
-            if ($validator->hasValue($option)) {
30
+        foreach ($this->options as $option){
31
+            if ($validator->hasValue($option)){
32 32
                 return false;
33 33
             }
34 34
         }
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,10 @@
 block discarded – undo
27 27
      */
28 28
     public function isMet(ValidatorInterface $validator, string $field, $value): bool
29 29
     {
30
-        foreach ($this->options as $option) {
31
-            if ($validator->hasValue($option)) {
30
+        foreach ($this->options as $option)
31
+        {
32
+            if ($validator->hasValue($option))
33
+            {
32 34
                 return false;
33 35
             }
34 36
         }
Please login to merge, or discard this patch.
src/Validation/src/AbstractChecker.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
      */
38 38
     public function ignoreEmpty(string $method, $value, array $args): bool
39 39
     {
40
-        if (!empty($value)) {
40
+        if (!empty($value)){
41 41
             return false;
42 42
         }
43 43
 
@@ -54,12 +54,12 @@  discard block
 block discarded – undo
54 54
         $value,
55 55
         array $args = []
56 56
     ): bool {
57
-        try {
57
+        try{
58 58
             $this->validator = $v;
59 59
             array_unshift($args, $value);
60 60
 
61 61
             return call_user_func_array([$this, $method], $args);
62
-        } finally {
62
+        }finally{
63 63
             $this->validator = null;
64 64
         }
65 65
     }
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     public function getMessage(string $method, string $field, $value, array $arguments = []): string
71 71
     {
72 72
         $messages = static::MESSAGES;
73
-        if (isset($messages[$method])) {
73
+        if (isset($messages[$method])){
74 74
             array_unshift($arguments, $field);
75 75
 
76 76
             return $this->say(static::MESSAGES[$method], $arguments);
Please login to merge, or discard this patch.
Braces   +9 added lines, -4 removed lines patch added patch discarded remove patch
@@ -37,7 +37,8 @@  discard block
 block discarded – undo
37 37
      */
38 38
     public function ignoreEmpty(string $method, $value, array $args): bool
39 39
     {
40
-        if (!empty($value)) {
40
+        if (!empty($value))
41
+        {
41 42
             return false;
42 43
         }
43 44
 
@@ -54,12 +55,15 @@  discard block
 block discarded – undo
54 55
         $value,
55 56
         array $args = []
56 57
     ): bool {
57
-        try {
58
+        try
59
+        {
58 60
             $this->validator = $v;
59 61
             array_unshift($args, $value);
60 62
 
61 63
             return call_user_func_array([$this, $method], $args);
62
-        } finally {
64
+        }
65
+        finally
66
+        {
63 67
             $this->validator = null;
64 68
         }
65 69
     }
@@ -70,7 +74,8 @@  discard block
 block discarded – undo
70 74
     public function getMessage(string $method, string $field, $value, array $arguments = []): string
71 75
     {
72 76
         $messages = static::MESSAGES;
73
-        if (isset($messages[$method])) {
77
+        if (isset($messages[$method]))
78
+        {
74 79
             array_unshift($arguments, $field);
75 80
 
76 81
             return $this->say(static::MESSAGES[$method], $arguments);
Please login to merge, or discard this patch.
src/Validation/tests/AliasedConditionsTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
     public function testWithAny(): void
81 81
     {
82 82
         $this->assertValid(
83
-            ['i' => 'a',],
83
+            ['i' => 'a', ],
84 84
             ['i' => [['is_bool', 'if' => ['withAny' => ['b', 'c']]]]]
85 85
         );
86 86
 
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
     public function testWithAll(): void
101 101
     {
102 102
         $this->assertValid(
103
-            ['i' => 'a',],
103
+            ['i' => 'a', ],
104 104
             ['i' => [['is_bool', 'if' => ['withAll' => ['b', 'c']]]]]
105 105
         );
106 106
 
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
     {
121 121
         $this->assertNotValid(
122 122
             'i',
123
-            ['i' => 'a',],
123
+            ['i' => 'a', ],
124 124
             ['i' => [['is_bool', 'if' => ['withoutAny' => ['b', 'c']]]]]
125 125
         );
126 126
 
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
     {
141 141
         $this->assertNotValid(
142 142
             'i',
143
-            ['i' => 'a',],
143
+            ['i' => 'a', ],
144 144
             ['i' => [['is_bool', 'if' => ['withoutAll' => ['b', 'c']]]]]
145 145
         );
146 146
 
Please login to merge, or discard this patch.
src/Validation/tests/Checkers/TypesTest.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
     {
95 95
         $checker = new TypeChecker();
96 96
 
97
-        foreach (\DateTimeZone::listIdentifiers() as $identifier) {
97
+        foreach (\DateTimeZone::listIdentifiers() as $identifier){
98 98
             $this->assertTrue($checker->timezone($identifier));
99 99
             $this->assertFalse($checker->timezone(str_rot13($identifier)));
100 100
         }
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,8 @@
 block discarded – undo
94 94
     {
95 95
         $checker = new TypeChecker();
96 96
 
97
-        foreach (\DateTimeZone::listIdentifiers() as $identifier) {
97
+        foreach (\DateTimeZone::listIdentifiers() as $identifier)
98
+        {
98 99
             $this->assertTrue($checker->timezone($identifier));
99 100
             $this->assertFalse($checker->timezone(str_rot13($identifier)));
100 101
         }
Please login to merge, or discard this patch.
src/Validation/tests/Checkers/ImageTest.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 
30 30
     public function testValid(): void
31 31
     {
32
-        $file = __DIR__ . '/fixtures/sample-1.jpg';
32
+        $file = __DIR__.'/fixtures/sample-1.jpg';
33 33
 
34 34
         $this->assertValid([
35 35
             'i' => $file
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
             'i' => ['image:valid']
62 62
         ]);
63 63
 
64
-        $file = __DIR__ . '/fixtures/sample-2.png';
64
+        $file = __DIR__.'/fixtures/sample-2.png';
65 65
 
66 66
         $this->assertValid([
67 67
             'i' => $file
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
             'i' => ['image:valid']
70 70
         ]);
71 71
 
72
-        $file = __DIR__ . '/fixtures/sample-3.gif';
72
+        $file = __DIR__.'/fixtures/sample-3.gif';
73 73
 
74 74
         $this->assertValid([
75 75
             'i' => $file
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
             'i' => ['image:valid']
78 78
         ]);
79 79
 
80
-        $file = __DIR__ . '/fixtures/hack.jpg';
80
+        $file = __DIR__.'/fixtures/hack.jpg';
81 81
 
82 82
         $this->assertNotValid('i', [
83 83
             'i' => $file
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
 
95 95
     public function testSmaller(): void
96 96
     {
97
-        $file = __DIR__ . '/fixtures/sample-1.jpg';
97
+        $file = __DIR__.'/fixtures/sample-1.jpg';
98 98
 
99 99
         $this->assertValid([
100 100
             'i' => $file
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 
115 115
 
116 116
         $this->assertNotValid('i', [
117
-            'i' => __DIR__ . '/fixtures/hack.jpg'
117
+            'i' => __DIR__.'/fixtures/hack.jpg'
118 118
         ], [
119 119
             'i' => [
120 120
                 ['image:smaller', 150, 150]
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
 
125 125
     public function testBigger(): void
126 126
     {
127
-        $file = __DIR__ . '/fixtures/sample-1.jpg';
127
+        $file = __DIR__.'/fixtures/sample-1.jpg';
128 128
 
129 129
         $this->assertValid([
130 130
             'i' => $file
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
         ]);
144 144
 
145 145
         $this->assertNotValid('i', [
146
-            'i' => __DIR__ . '/fixtures/hack.jpg'
146
+            'i' => __DIR__.'/fixtures/hack.jpg'
147 147
         ], [
148 148
             'i' => [
149 149
                 ['image:bigger', 150, 150]
Please login to merge, or discard this patch.