1 | <?php |
||
16 | class QueryAggregator extends AbstractAggregator |
||
17 | { |
||
18 | /** |
||
19 | * @param BenchmarkInterface $benchmark |
||
20 | * @return bool |
||
21 | */ |
||
22 | 1 | public function accept(BenchmarkInterface $benchmark) |
|
26 | |||
27 | /** |
||
28 | * @param BenchmarkInterface $benchmark |
||
29 | * @return string |
||
30 | */ |
||
31 | 2 | public function getCommand(BenchmarkInterface $benchmark) |
|
35 | |||
36 | /** |
||
37 | * Get the title of this data collector |
||
38 | * |
||
39 | * @return string |
||
40 | */ |
||
41 | 1 | public function getTitle() |
|
45 | |||
46 | /** |
||
47 | * Get the font-awesome icon class (e.g. fa-pie-chart) |
||
48 | * http://fortawesome.github.io/Font-Awesome/icons/ |
||
49 | * |
||
50 | * @return string |
||
51 | */ |
||
52 | 1 | public function getIcon() |
|
56 | } |
||
57 |