Skip to content

Commit 3ee8cf8

Browse files
committed
fix: remove php option when configuring image deployment
1 parent b66701e commit 3ee8cf8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/ProjectConfiguration/ImageDeploymentConfigurationChange.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ class ImageDeploymentConfigurationChange implements ConfigurationChangeInterface
2020
*/
2121
public function apply(array $options, string $projectType): array
2222
{
23+
if (isset($options['php'])) {
24+
unset($options['php']);
25+
}
26+
2327
return array_merge($options, ['deployment' => 'image']);
2428
}
2529
}

0 commit comments

Comments
 (0)