1 | <?php |
||
20 | class DashboardSonataBlock extends AbstractBlockService |
||
21 | { |
||
22 | /** |
||
23 | * @var DashboardBlockRegistry |
||
24 | */ |
||
25 | private $registry; |
||
26 | |||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | */ |
||
30 | public function configureSettings(OptionsResolver $resolver) |
||
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | public function execute(BlockContextInterface $blockContext, Response $response = null) |
||
52 | |||
53 | /** |
||
54 | * @param DashboardBlockRegistry registry |
||
55 | * |
||
56 | * @return self |
||
57 | */ |
||
58 | public function setRegistry(DashboardBlockRegistry $registry) |
||
64 | } |
||
65 |