Test Failed
Push — main ( 5edb73...d2cb63 )
by Fractal
02:48
created

ConstraintsHelper::createCollection()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 3
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace FRZB\Component\RequestMapper\Helper;
6
7
use Symfony\Component\Validator\Constraint;
8
use Symfony\Component\Validator\Constraints\Collection;
9
10
/**
11
 * @internal
12
 */
13
final class ConstraintsHelper
14
{
15
    public static function createCollection(array $fields, bool $allowExtraFields = true, bool $allowMissingFields = true): Collection
16
    {
17
        return new Collection(fields: $fields, allowExtraFields: $allowExtraFields, allowMissingFields: $allowMissingFields);
18
    }
19
20
    /** @return array<Constraint> */
21
    public static function fromProperty(\ReflectionProperty $rProperty): array
22
    {
23
        return array_map(
24
            static fn (\ReflectionAttribute $a) => $a->newInstance(),
25
            $rProperty->getAttributes(Constraint::class, \ReflectionAttribute::IS_INSTANCEOF)
26
        );
27
    }
28
}
29