public function FeaturesGenerationMethodBase::setAssigner in Features 8.4
Same name and namespace in other branches
- 8.3 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\featuresCode
public function setAssigner(FeaturesAssignerInterface $assigner) {
$this->assigner = $assigner;
}