You are here

public function FrontendEnvironment::setDeploymentStrategy in Build Hooks 8.2

Same name and namespace in other branches
  1. 3.x 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\Entity

Code

public function setDeploymentStrategy($deployment_strategy) {
  $this->deployment_strategy = $deployment_strategy;
}