| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 24 | public function normalize($ruleValue, string $ruleName = ''): array |
||
| 25 | { |
||
| 26 | if (null !== $this->normalized) { |
||
| 27 | return $this->normalized; |
||
| 28 | } |
||
| 29 | return $this->normalized = $this->normalizeMultiValues([ |
||
| 30 | 'border-top-width', |
||
| 31 | 'border-right-width', |
||
| 32 | 'border-bottom-width', |
||
| 33 | 'border-left-width', ], $ruleValue); |
||
| 34 | } |
||
| 36 |