public function Dependency::getProject in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Extension/Dependency.php \Drupal\Core\Extension\Dependency::getProject()
Gets the dependency's project namespace.
Return value
string The dependency's project namespace.
1 call to Dependency::getProject()
- Dependency::offsetGet in core/
lib/ Drupal/ Core/ Extension/ Dependency.php
File
- core/
lib/ Drupal/ Core/ Extension/ Dependency.php, line 77
Class
- Dependency
- A value object representing dependency information.
Namespace
Drupal\Core\ExtensionCode
public function getProject() {
return $this->project;
}