protected function Dependency::getConstraint in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Extension/Dependency.php \Drupal\Core\Extension\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;
}