public function BarClass::getBaz in Zircon Profile 8.0
Same name in this branch
- 8.0 vendor/symfony/dependency-injection/Tests/Fixtures/includes/classes.php \BarClass::getBaz()
- 8.0 core/tests/Drupal/Tests/Core/DependencyInjection/Fixture/BarClass.php \Drupal\Tests\Core\DependencyInjection\Fixture\BarClass::getBaz()
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/DependencyInjection/Fixture/BarClass.php \Drupal\Tests\Core\DependencyInjection\Fixture\BarClass::getBaz()
Getter for our BazClass object.
Return value
\Drupal\Tests\Core\DependencyInjection\Fixture\BazClass The stored BazClass object.
File
- core/
tests/ Drupal/ Tests/ Core/ DependencyInjection/ Fixture/ BarClass.php, line 43 - Contains \Drupal\Tests\Core\DependencyInjection\Fixture\BarClass.
Class
- BarClass
- Stub class which acts as a service to test the container.
Namespace
Drupal\Tests\Core\DependencyInjection\FixtureCode
public function getBaz() {
return $this->baz;
}