public function ServiceWithDependency::greet in Drupal 10
Same name and namespace in other branches
- 8 core/modules/system/tests/modules/new_dependency_test/src/ServiceWithDependency.php \Drupal\new_dependency_test\ServiceWithDependency::greet()
- 9 core/modules/system/tests/modules/new_dependency_test/src/ServiceWithDependency.php \Drupal\new_dependency_test\ServiceWithDependency::greet()
Gets a greeting from the injected service and adds to it.
Return value
string The greeting.
File
- core/
modules/ system/ tests/ modules/ new_dependency_test/ src/ ServiceWithDependency.php, line 35
Class
- ServiceWithDependency
- Service that gets the other service of the same module injected.
Namespace
Drupal\new_dependency_testCode
public function greet() {
if (isset($this->service)) {
return $this->service
->greet() . ' World';
}
return 'Sorry, no service.';
}