function Dependency::getConstraint
Gets the Constraint object.
Return value
\Drupal\Component\Version\Constraint The Constraint object.
File
-
core/
lib/ Drupal/ Core/ Extension/ Dependency.php, line 92
Class
- Dependency
- A value object representing dependency information.
Namespace
Drupal\Core\ExtensionCode
protected function getConstraint() {
if (!$this->constraint) {
$this->constraint = new Constraint($this->constraintString, \Drupal::CORE_COMPATIBILITY);
}
return $this->constraint;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.