public function FrontendEnvironment::setDeploymentStrategy in Build Hooks 3.x
Same name and namespace in other branches
- 8.2 src/Entity/FrontendEnvironment.php \Drupal\build_hooks\Entity\FrontendEnvironment::setDeploymentStrategy()
Sets the deployment strategy of the environment.
Parameters
string $deploymentStrategy: The deployment strategy.
Overrides FrontendEnvironmentInterface::setDeploymentStrategy
File
- src/
Entity/ FrontendEnvironment.php, line 135
Class
- FrontendEnvironment
- Defines the Frontend environment entity.
Namespace
Drupal\build_hooks\EntityCode
public function setDeploymentStrategy($deployment_strategy) {
$this->deployment_strategy = $deployment_strategy;
}