ConstraintManager::getDiscovery

protected ConstraintManager::getDiscovery()

Gets the plugin discovery.

Return value

\Drupal\Component\Plugin\Discovery\DiscoveryInterface

Overrides DefaultPluginManager::getDiscovery

File

core/lib/Drupal/Core/Validation/ConstraintManager.php, line 51

Class

ConstraintManager
Constraint plugin manager.

Namespace

Drupal\Core\Validation

Code

protected function getDiscovery() {
  if (!isset($this->discovery)) {
    $this->discovery = parent::getDiscovery();
    $this->discovery = new StaticDiscoveryDecorator($this->discovery, [$this, 'registerDefinitions']);
  }
  return $this->discovery;
}
doc_Drupal
2016-10-29 08:56:08
Comments
Leave a Comment

Please login to continue.