Passed
Pull Request — master (#364)
by
unknown
02:42
created

SubsetHandler::validate()   A

Complexity

Conditions 5
Paths 5

Size

Total Lines 32
Code Lines 17

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 13
CRAP Score 5.3256

Importance

Changes 4
Bugs 1 Features 0
Metric Value
eloc 17
c 4
b 1
f 0
dl 0
loc 32
ccs 13
cts 17
cp 0.7647
rs 9.3888
cc 5
nc 5
nop 3
crap 5.3256
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Yiisoft\Validator\Rule;
6
7
use Traversable;
8
use Yiisoft\Arrays\ArrayHelper;
9
use Yiisoft\Validator\Exception\UnexpectedRuleException;
10
use Yiisoft\Validator\Result;
11
use Yiisoft\Validator\RuleHandlerInterface;
12
use Yiisoft\Validator\ValidationContext;
13
14
final class SubsetHandler implements RuleHandlerInterface
15
{
16 10
    public function validate(mixed $value, object $rule, ValidationContext $context): Result
17
    {
18 10
        if (!$rule instanceof Subset) {
19 1
            throw new UnexpectedRuleException(Subset::class, $rule);
20
        }
21
22 9
        $result = new Result();
23 9
        if (!is_iterable($value)) {
24
            return $result->addError($rule->getIterableMessage(), [
25
                'attribute' => $context->getAttribute(),
26
                'type' => get_debug_type($value),
27
            ]);
28
        }
29
30 9
        if (!ArrayHelper::isSubset($value, $rule->getValues(), $rule->isStrict())) {
31 3
            $values = $rule->getValues();
32 3
            if ($values instanceof Traversable) {
33
                $values = iterator_to_array($values);
34
            }
35
36 3
            $valuesString = '"' . implode('", "', $values) . '"';
0 ignored issues
show
Bug introduced by
It seems like $values can also be of type iterable; however, parameter $pieces of implode() does only seem to accept array, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

36
            $valuesString = '"' . implode('", "', /** @scrutinizer ignore-type */ $values) . '"';
Loading history...
37
38 3
            $result->addError(
39 3
                $rule->getSubsetMessage(),
40
                [
41 3
                    'attribute' => $context->getAttribute(),
42
                    'values' => $valuesString,
43
                ],
44
            );
45
        }
46
47 9
        return $result;
48
    }
49
}
50