Total Complexity | 5 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 1 |
1 | <?php |
||
11 | class SecurityRequirement implements ValueObjectInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var string[][] |
||
15 | */ |
||
16 | private $securityRequirementArray; |
||
17 | |||
18 | public static function fromNative($value) |
||
19 | { |
||
20 | return new SecurityRequirement($value); |
||
21 | } |
||
22 | |||
23 | public function toNative() |
||
26 | } |
||
27 | |||
28 | public function __construct(iterable $value) |
||
37 | } |
||
38 | } |
||
40 |