Expanded class hierarchy of MongoDbProfilerStorageTestDataCollector
class MongoDbProfilerStorageTestDataCollector extends DataCollector {
public function setData($data) {
$this->data = $data;
}
public function getData() {
return $this->data;
}
public function collect(Request $request, Response $response, \Exception $exception = null) {
}
public function getName() {
return 'test_data_collector';
}
}
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DataCollector:: |
protected | property | ||
DataCollector:: |
public | function | ||
DataCollector:: |
public | function | ||
DataCollector:: |
protected | function | Converts a PHP variable to a string. | |
MongoDbProfilerStorageTestDataCollector:: |
public | function |
Collects data for the given Request and Response. Overrides DataCollectorInterface:: |
|
MongoDbProfilerStorageTestDataCollector:: |
public | function | ||
MongoDbProfilerStorageTestDataCollector:: |
public | function |
Returns the name of the collector. Overrides DataCollectorInterface:: |
|
MongoDbProfilerStorageTestDataCollector:: |
public | function |