| Total Complexity | 3 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class StatisticBlockService extends AbstractBlockService |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * {@inheritdoc} |
||
| 16 | */ |
||
| 17 | public function getName() |
||
| 18 | { |
||
| 19 | return 'statistic'; |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * {@inheritdoc} |
||
| 24 | */ |
||
| 25 | public function getDefaultSettings() |
||
| 26 | { |
||
| 27 | return []; |
||
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * {@inheritdoc} |
||
| 32 | */ |
||
| 33 | public function execute(BlockContextInterface $blockContext, Response $response = null) |
||
| 42 | ); |
||
| 43 | } |
||
| 44 | } |
||
| 45 |