Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Passed
Pull Request — master (#957)
by Henrique
02:30
created

Validator::__callStatic()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 9
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 2.032

Importance

Changes 0
Metric Value
cc 2
eloc 4
nc 2
nop 2
dl 0
loc 9
ccs 4
cts 5
cp 0.8
crap 2.032
rs 9.6666
c 0
b 0
f 0
1
<?php
2
3
/*
4
 * This file is part of Respect/Validation.
5
 *
6
 * (c) Alexandre Gomes Gaigalas <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the "LICENSE.md"
9
 * file that was distributed with this source code.
10
 */
11
12
declare(strict_types=1);
13
14
namespace Respect\Validation;
15
16
use finfo;
17
use ReflectionClass;
18
use Respect\Validation\Exceptions\ComponentException;
19
use Respect\Validation\Exceptions\ValidationException;
20
use Respect\Validation\Rules\AllOf;
21
use Respect\Validation\Rules\Key;
22
23
/**
24
 * @method static Validator allOf(Validatable ...$rule)
25
 * @method static Validator alnum(string $additionalChars = null)
26
 * @method static Validator alpha(string $additionalChars = null)
27
 * @method static Validator alwaysInvalid()
28
 * @method static Validator alwaysValid()
29
 * @method static Validator anyOf()
30
 * @method static Validator arrayType()
31
 * @method static Validator arrayVal()
32
 * @method static Validator attribute(string $reference, Validatable $validator = null, bool $mandatory = true)
33
 * @method static Validator base()
34
 * @method static Validator base64()
35
 * @method static Validator between($minimum, $maximum, bool $inclusive = true)
36
 * @method static Validator bic(string $countryCode)
37
 * @method static Validator boolType()
38
 * @method static Validator boolVal()
39
 * @method static Validator bsn()
40
 * @method static Validator call()
41
 * @method static Validator callableType()
42
 * @method static Validator callback(callable $callback)
43
 * @method static Validator charset($charset)
44
 * @method static Validator cnh()
45
 * @method static Validator cnpj()
46
 * @method static Validator consonant(string $additionalChars = null)
47
 * @method static Validator contains($containsValue, bool $identical = false)
48
 * @method static Validator countable()
49
 * @method static Validator countryCode()
50
 * @method static Validator currencyCode()
51
 * @method static Validator cpf()
52
 * @method static Validator creditCard(string $brand = null)
53
 * @method static Validator date(string $format = 'Y-m-d')
54
 * @method static Validator dateTime(string $format = null)
55
 * @method static Validator digit(string $additionalChars = null)
56
 * @method static Validator directory()
57
 * @method static Validator domain(bool $tldCheck = true)
58
 * @method static Validator each(Validatable $itemValidator = null, Validatable $keyValidator = null)
59
 * @method static Validator email()
60
 * @method static Validator endsWith($endValue, bool $identical = false)
61
 * @method static Validator equals($compareTo)
62
 * @method static Validator even()
63
 * @method static Validator executable()
64
 * @method static Validator exists()
65
 * @method static Validator extension(string $extension)
66
 * @method static Validator factor(int $dividend)
67
 * @method static Validator falseVal()
68
 * @method static Validator fibonacci()
69
 * @method static Validator file()
70
 * @method static Validator filterVar(int $filter, $options = null)
71
 * @method static Validator finite()
72
 * @method static Validator floatVal()
73
 * @method static Validator floatType()
74
 * @method static Validator graph(string $additionalChars = null)
75
 * @method static Validator hexRgbColor()
76
 * @method static Validator identical($value)
77
 * @method static Validator identityCard(string $countryCode)
78
 * @method static Validator image(finfo $fileInfo = null)
79
 * @method static Validator imei()
80
 * @method static Validator in($haystack, bool $compareIdentical = false)
81
 * @method static Validator infinite()
82
 * @method static Validator instance(string $instanceName)
83
 * @method static Validator intVal()
84
 * @method static Validator intType()
85
 * @method static Validator ip($ipOptions = null)
86
 * @method static Validator iterableType()
87
 * @method static Validator json()
88
 * @method static Validator key(string $reference, Validatable $referenceValidator = null, bool $mandatory = true)
89
 * @method static Validator keyNested(string $reference, Validatable $referenceValidator = null, bool $mandatory = true)
90
 * @method static Validator keySet(Key ...$rule)
91
 * @method static Validator keyValue(string $comparedKey, string $ruleName, string $baseKey)
92
 * @method static Validator languageCode(string $set)
93
 * @method static Validator leapDate(string $format)
94
 * @method static Validator leapYear()
95
 * @method static Validator length(int $min = null, int $max = null, bool $inclusive = true)
96
 * @method static Validator lowercase()
97
 * @method static Validator luhn()
98
 * @method static Validator macAddress()
99
 * @method static Validator max($maxValue, bool $inclusive = true)
100
 * @method static Validator maximumAge(int $age, string $format = null)
101
 * @method static Validator mimetype(string $mimetype)
102
 * @method static Validator min($minValue, bool $inclusive = true)
103
 * @method static Validator minimumAge(int $age, bool $format = null)
104
 * @method static Validator multiple(int $multipleOf)
105
 * @method static Validator negative()
106
 * @method static Validator nif()
107
 * @method static Validator no($useLocale = false)
108
 * @method static Validator noneOf(Validatable ...$rule)
109
 * @method static Validator not(Validatable $rule)
110
 * @method static Validator notBlank()
111
 * @method static Validator notEmpty()
112
 * @method static Validator notOptional()
113
 * @method static Validator noWhitespace()
114
 * @method static Validator nullable(Validatable $rule)
115
 * @method static Validator nullType()
116
 * @method static Validator number()
117
 * @method static Validator numericVal()
118
 * @method static Validator objectType()
119
 * @method static Validator odd()
120
 * @method static Validator oneOf(Validatable ...$rule)
121
 * @method static Validator optional(Validatable $rule)
122
 * @method static Validator perfectSquare()
123
 * @method static Validator pesel()
124
 * @method static Validator phone()
125
 * @method static Validator phpLabel()
126
 * @method static Validator pis()
127
 * @method static Validator positive()
128
 * @method static Validator postalCode(string $countryCode)
129
 * @method static Validator primeNumber()
130
 * @method static Validator prnt(string $additionalChars = null)
131
 * @method static Validator punct(string $additionalChars = null)
132
 * @method static Validator readable()
133
 * @method static Validator regex(string $regex)
134
 * @method static Validator resourceType()
135
 * @method static Validator roman()
136
 * @method static Validator scalarVal()
137
 * @method static Validator sf(string $name, array $params = null)
138
 * @method static Validator size(string $minSize = null, string $maxSize = null)
139
 * @method static Validator slug()
140
 * @method static Validator space(string $additionalChars = null)
141
 * @method static Validator startsWith($startValue, bool $identical = false)
142
 * @method static Validator stringType()
143
 * @method static Validator stringVal()
144
 * @method static Validator subdivisionCode(string $countryCode)
145
 * @method static Validator symbolicLink()
146
 * @method static Validator time(string $format = 'H:i:s')
147
 * @method static Validator tld()
148
 * @method static Validator trueVal()
149
 * @method static Validator type(string $type)
150
 * @method static Validator unique()
151
 * @method static Validator uploaded()
152
 * @method static Validator uppercase()
153
 * @method static Validator url()
154
 * @method static Validator uuid()
155
 * @method static Validator vatin(string $countryCode)
156
 * @method static Validator version()
157
 * @method static Validator videoUrl(string $service = null)
158
 * @method static Validator vowel()
159
 * @method static Validator when(Validatable $if, Validatable $then, Validatable $when = null)
160
 * @method static Validator writable()
161
 * @method static Validator xdigit(string $additionalChars = null)
162
 * @method static Validator yes($useLocale = false)
163
 * @method static Validator zend($validator, array $params = null)
164
 */
165
class Validator extends AllOf
166
{
167
    public function check($input): void
168
    {
169
        try {
170
            parent::check($input);
171
        } catch (ValidationException $exception) {
172
            if (1 == count($this->getRules()) && $this->template) {
173
                $exception->updateTemplate($this->template);
174
            }
175
176
            throw $exception;
177
        }
178
    }
179
180
    /**
181
     * @param string $ruleName
182
     * @param array  $arguments
183
     *
184
     * @return Validator
185
     */
186 1
    public static function __callStatic($ruleName, $arguments)
187
    {
188 1
        if ('allOf' === $ruleName) {
189
            return static::buildRule($ruleName, $arguments);
190
        }
191
192 1
        $validator = new static();
193
194 1
        return $validator->__call($ruleName, $arguments);
195
    }
196
197
    /**
198
     * @param mixed $ruleSpec
199
     * @param array $arguments
200
     *
201
     * @return Validatable
202
     */
203 2
    public static function buildRule($ruleSpec, $arguments = [])
204
    {
205
        try {
206 2
            return Factory::getDefaultInstance()->rule($ruleSpec, $arguments);
207 1
        } catch (\Exception $exception) {
208 1
            throw new ComponentException($exception->getMessage(), $exception->getCode(), $exception);
209
        }
210
    }
211
212
    /**
213
     * @param string $method
214
     * @param array  $arguments
215
     *
216
     * @return self
217
     */
218 2
    public function __call($method, $arguments)
219
    {
220 2
        return $this->addRule(static::buildRule($method, $arguments));
221
    }
222
223
    /**
224
     * Create instance validator.
225
     *
226
     * @return Validator
227
     */
228 1
    public static function create()
229
    {
230 1
        $ref = new ReflectionClass(__CLASS__);
231
232 1
        return $ref->newInstanceArgs(func_get_args());
233
    }
234
}
235