| Total Complexity | 3 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Coverage | 91.67% |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | final class PropertyNameConverter implements NameConverterInterface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * Local cache. |
||
| 24 | * |
||
| 25 | * @psalm-var array<string, string> |
||
| 26 | */ |
||
| 27 | private $localStorage = []; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | 8 | public function normalize(string $propertyName): string |
|
| 35 | } |
||
| 36 | |||
| 37 | /** |
||
| 38 | * {@inheritdoc} |
||
| 39 | */ |
||
| 40 | 7 | public function denormalize(string $propertyName): string |
|
| 59 |