| Total Complexity | 3 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | class TransformationProvider extends TransformationProviderAbstract |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var ContainerInterface |
||
| 24 | */ |
||
| 25 | private $container; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var array |
||
| 29 | */ |
||
| 30 | private $cache = []; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @inheritdoc |
||
| 34 | * @param ContainerInterface $container |
||
| 35 | */ |
||
| 36 | public function __construct(array $transformations, ContainerInterface $container) |
||
| 41 | } |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @inheritdoc |
||
| 45 | */ |
||
| 46 | protected function resolve($transformation): callable |
||
| 53 |