| 1 | <?php namespace Anomaly\SettingsModule\Setting\Command; |
||
| 16 | class GetValuePresenter |
||
| 17 | { |
||
| 18 | |||
| 19 | use DispatchesJobs; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * The setting instance. |
||
| 23 | * |
||
| 24 | * @var SettingInterface |
||
| 25 | */ |
||
| 26 | protected $setting; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Create a new GetValuePresenter instance. |
||
| 30 | * |
||
| 31 | * @param SettingInterface $setting |
||
| 32 | */ |
||
| 33 | public function __construct(SettingInterface $setting) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Handle the command. |
||
| 40 | * |
||
| 41 | * @return \Anomaly\Streams\Platform\Addon\FieldType\FieldTypePresenter|mixed|object |
||
| 42 | */ |
||
| 43 | public function handle() |
||
| 52 | } |
||
| 53 |