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

ConstraintsHelper   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 13
rs 10
c 0
b 0
f 0
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A fromProperty() 0 5 1
A createCollection() 0 3 1
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