|
@@ -50,6 +50,16 @@ class DoctrineDataCollector extends DataCollector
|
|
return $this->data['queries'];
|
|
return $this->data['queries'];
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public function getTime()
|
|
|
|
+ {
|
|
|
|
+ $time = 0;
|
|
|
|
+ foreach ($this->data['queries'] as $query) {
|
|
|
|
+ $time += $query['executionMS'];
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return $time;
|
|
|
|
+ }
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* {@inheritdoc}
|
|
* {@inheritdoc}
|
|
*/
|
|
*/
|