Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
45 | public static function fromDeploymentEntity(DeploymentEntity $deploymentEntity): CandidateDeploymentImpl |
||
46 | { |
||
47 | // first cast ResourceEntity map to Resource |
||
48 | $resources = $deploymentEntity->getResources(); |
||
49 | return new CandidateDeploymentImpl($deploymentEntity->getName(), $resources); |
||
50 | } |
||
52 |