public function HttpDataCollector::getName in Devel 8.2
Same name and namespace in other branches
- 8.3 webprofiler/src/DataCollector/HttpDataCollector.php \Drupal\webprofiler\DataCollector\HttpDataCollector::getName()
- 8 webprofiler/src/DataCollector/HttpDataCollector.php \Drupal\webprofiler\DataCollector\HttpDataCollector::getName()
- 4.x webprofiler/src/DataCollector/HttpDataCollector.php \Drupal\webprofiler\DataCollector\HttpDataCollector::getName()
Returns the name of the collector.
Return value
string The collector name.
Overrides DrupalDataCollectorInterface::getName
File
- webprofiler/
src/ DataCollector/ HttpDataCollector.php, line 146
Class
- HttpDataCollector
- Collects data about http calls during request.
Namespace
Drupal\webprofiler\DataCollectorCode
public function getName() {
return 'http';
}