public function ContainerBuilder::getResources in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/dependency-injection/ContainerBuilder.php \Symfony\Component\DependencyInjection\ContainerBuilder::getResources()
Returns an array of resources loaded to build this configuration.
Return value
ResourceInterface[] An array of resources
File
- vendor/
symfony/ dependency-injection/ ContainerBuilder.php, line 187
Class
- ContainerBuilder
- ContainerBuilder is a DI container that provides an API to easily describe services.
Namespace
Symfony\Component\DependencyInjectionCode
public function getResources() {
return array_unique($this->resources);
}