| Total Complexity | 2 | 
| Total Lines | 25 | 
| Duplicated Lines | 0 % | 
| Coverage | 0% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 8 | class DeployFactory | ||
| 9 | { | ||
| 10 | /** | ||
| 11 | * @var ContainerResolver | ||
| 12 | */ | ||
| 13 | private $resolver; | ||
| 14 | |||
| 15 | /** | ||
| 16 | * @param ContainerResolver $resolver | ||
| 17 | */ | ||
| 18 | public function __construct(ContainerResolver $resolver) | ||
| 21 | } | ||
| 22 | |||
| 23 | /** | ||
| 24 | * @param string $class | ||
| 25 | * @return DeployDefinitionInterface | ||
| 26 | * @throws \ReflectionException | ||
| 27 | */ | ||
| 28 | public function createDeploy(string $class): DeployDefinitionInterface | ||
| 33 | } | ||
| 34 | } |