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