1 | <?php namespace Anomaly\Streams\Platform\Ui\ControlPanel\Component\Navigation\Event; |
||
12 | class SortNavigation |
||
13 | { |
||
14 | |||
15 | /** |
||
16 | * The control panel builder. |
||
17 | * |
||
18 | * @var ControlPanelBuilder |
||
19 | */ |
||
20 | protected $builder; |
||
21 | |||
22 | /** |
||
23 | * Create a new SortNavigation instance. |
||
24 | * |
||
25 | * @param ControlPanelBuilder $builder |
||
26 | */ |
||
27 | public function __construct(ControlPanelBuilder $builder) |
||
31 | |||
32 | /** |
||
33 | * Get the control panel builder. |
||
34 | * |
||
35 | * @return ControlPanelBuilder |
||
36 | */ |
||
37 | public function getBuilder() |
||
41 | } |
||
42 |