Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | public function build(): array |
||
18 | { |
||
19 | $parameters = $this->resolveParameters(); |
||
20 | |||
21 | $value = $this->property->getValue(); |
||
22 | |||
23 | return array_map(function (string $name) use ($value, $parameters) { |
||
24 | return "{$name}{$parameters}:{$value}"; |
||
25 | }, $this->property->getNames()); |
||
26 | } |
||
27 | |||
43 |