1 | <?php namespace Anomaly\Streams\Platform\Ui\Form\Command; |
||
16 | class SetJsonResponse |
||
17 | { |
||
18 | |||
19 | /** |
||
20 | * The form builder. |
||
21 | * |
||
22 | * @var FormBuilder |
||
23 | */ |
||
24 | protected $builder; |
||
25 | |||
26 | /** |
||
27 | * Create a new SetJsonResponse instance. |
||
28 | * |
||
29 | * @param FormBuilder $builder |
||
30 | */ |
||
31 | public function __construct(FormBuilder $builder) |
||
35 | |||
36 | /** |
||
37 | * Handle the command. |
||
38 | * |
||
39 | * @param ResponseFactory $response |
||
40 | * @param ActionResponder $responder |
||
41 | */ |
||
42 | public function handle(ResponseFactory $response, ActionResponder $responder) |
||
69 | } |
||
70 |