public function DerivativeDiscoveryDecorator::__construct in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Component/Plugin/Discovery/DerivativeDiscoveryDecorator.php \Drupal\Component\Plugin\Discovery\DerivativeDiscoveryDecorator::__construct()
Creates a new instance.
Parameters
\Drupal\Component\Plugin\Discovery\DiscoveryInterface $decorated: The parent object implementing DiscoveryInterface that is being decorated.
File
- core/
lib/ Drupal/ Component/ Plugin/ Discovery/ DerivativeDiscoveryDecorator.php, line 40
Class
- DerivativeDiscoveryDecorator
- Base class providing the tools for a plugin discovery to be derivative aware.
Namespace
Drupal\Component\Plugin\DiscoveryCode
public function __construct(DiscoveryInterface $decorated) {
$this->decorated = $decorated;
}