1 | <?php |
||
20 | class DisplayStatisticsController extends AbstractController |
||
21 | { |
||
22 | /** |
||
23 | * JSON view for displaying the statistics. |
||
24 | * |
||
25 | * @var StatsJsonView |
||
26 | */ |
||
27 | private $view; |
||
28 | |||
29 | /** |
||
30 | * Constructor. |
||
31 | * |
||
32 | * @param StatsJsonView $view JSON view for displaying the statistics. |
||
33 | */ |
||
34 | 3 | public function __construct(StatsJsonView $view) |
|
38 | |||
39 | /** |
||
40 | * Execute the controller. |
||
41 | * |
||
42 | * @return boolean |
||
43 | */ |
||
44 | 3 | public function execute() |
|
59 | } |
||
60 |