public function ServicesDataCollector::getInitializedServices in Devel 8.3
Same name and namespace in other branches
- 8 webprofiler/src/DataCollector/ServicesDataCollector.php \Drupal\webprofiler\DataCollector\ServicesDataCollector::getInitializedServices()
- 8.2 webprofiler/src/DataCollector/ServicesDataCollector.php \Drupal\webprofiler\DataCollector\ServicesDataCollector::getInitializedServices()
- 4.x webprofiler/src/DataCollector/ServicesDataCollector.php \Drupal\webprofiler\DataCollector\ServicesDataCollector::getInitializedServices()
Return value
array
2 calls to ServicesDataCollector::getInitializedServices()
- ServicesDataCollector::getInitializedServicesCount in webprofiler/
src/ DataCollector/ ServicesDataCollector.php - ServicesDataCollector::getInitializedServicesWithoutWebprofiler in webprofiler/
src/ DataCollector/ ServicesDataCollector.php
File
- webprofiler/
src/ DataCollector/ ServicesDataCollector.php, line 75
Class
- ServicesDataCollector
- Class ServicesDataCollector.
Namespace
Drupal\webprofiler\DataCollectorCode
public function getInitializedServices() {
return array_filter($this
->getServices(), function ($item) {
return $item['initialized'];
});
}