| 1 | <?php namespace Anomaly\DashboardModule\Widget\Command; |
||
| 15 | class GetSortableFlag implements SelfHandling |
||
| 16 | { |
||
| 17 | |||
| 18 | /** |
||
| 19 | * The widget instance. |
||
| 20 | * |
||
| 21 | * @var WidgetInterface |
||
| 22 | */ |
||
| 23 | protected $widget; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Create a new GetSortableFlag instance. |
||
| 27 | * |
||
| 28 | * @param WidgetInterface $widget |
||
| 29 | */ |
||
| 30 | public function __construct(WidgetInterface $widget) |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Handle the command. |
||
| 37 | * |
||
| 38 | * @param Authorizer $authorizer |
||
| 39 | * @return bool |
||
| 40 | */ |
||
| 41 | public function handle(Authorizer $authorizer) |
||
| 45 | } |
||
| 46 |