You are here

public function FeaturesGenerationMethodBase::setAssigner in Features 8.3

Same name and namespace in other branches
  1. 8.4 src/FeaturesGenerationMethodBase.php \Drupal\features\FeaturesGenerationMethodBase::setAssigner()

Injects the features assigner.

Parameters

\Drupal\features\FeaturesAssignerInterface $assigner: The features assigner to be used to retrieve the bundle configuration.

Overrides FeaturesGenerationMethodInterface::setAssigner

File

src/FeaturesGenerationMethodBase.php, line 39

Class

FeaturesGenerationMethodBase
Base class for package assignment methods.

Namespace

Drupal\features

Code

public function setAssigner(FeaturesAssignerInterface $assigner) {
  $this->assigner = $assigner;
}