| 1 | <?php |
||
| 10 | class RenderTemplateAction implements ActionInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * $viewFactory. |
||
| 14 | * |
||
| 15 | * @var \Illuminate\Contracts\View\Factory |
||
| 16 | */ |
||
| 17 | protected $viewFactory; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * __construct. |
||
| 21 | * |
||
| 22 | * @param \Illuminate\Contracts\View\Factory $viewFactory |
||
| 23 | */ |
||
| 24 | 1 | public function __construct(ViewFactory $viewFactory) |
|
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | 1 | public function execute($request) |
|
| 42 | |||
| 43 | /** |
||
| 44 | * {@inheritdoc} |
||
| 45 | */ |
||
| 46 | 1 | public function supports($request) |
|
| 50 | } |
||
| 51 |