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