Conditions | 2 |
Paths | 2 |
Total Lines | 16 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 12 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
31 | 3 | public function validate(Ruleable $element): bool |
|
32 | { |
||
33 | 3 | $method = $this->getRequest()->getMethod(); |
|
34 | /** @var array $requestData */ |
||
35 | 3 | $requestData = match (strtolower($method)) { |
|
36 | 3 | 'get' => $this->getRequest()->getQueryParams(), |
|
37 | 3 | 'post' => $this->getRequest()->getParsedBody(), |
|
38 | 3 | default => [] |
|
39 | 3 | }; |
|
40 | /** @var string $value */ |
||
41 | 3 | $value = \getValueByIndexPath($element->getName(), $requestData); |
|
|
|||
42 | 3 | if ($this->check(\trim($value)) === false) { |
|
43 | 1 | $element->setRuleError($this->message); |
|
44 | 1 | return false; |
|
45 | } |
||
46 | 2 | return true; |
|
47 | } |
||
63 |