| Total Complexity | 4 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | class UuidUriVariableTransformer implements UriVariableTransformerInterface |
||
| 24 | { |
||
| 25 | private BaseUuidUriVariableTransformer $decorated; |
||
| 26 | |||
| 27 | public function __construct(BaseUuidUriVariableTransformer $decorated) |
||
| 28 | { |
||
| 29 | $this->decorated = $decorated; |
||
| 30 | } |
||
| 31 | |||
| 32 | public function transform($value, array $types, array $context = []) |
||
| 38 | } |
||
| 39 | } |
||
| 40 | |||
| 41 | public function supportsTransformation($value, array $types, array $context = []): bool |
||
| 44 | } |
||
| 45 | } |
||
| 46 |