| 1 | <?php |
||
| 20 | class CommentFormFactoryTwigExtension extends AbstractExtension |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var FormFactoryInterface |
||
| 24 | */ |
||
| 25 | private $formFactory; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var string |
||
| 29 | */ |
||
| 30 | private $commentClass; |
||
| 31 | |||
| 32 | public function __construct(FormFactoryInterface $formFactory, string $commentClass) |
||
| 37 | |||
| 38 | public function getFunctions() |
||
| 44 | |||
| 45 | public function createCommentForm(string $threadId, ?string $referrer = null, ?int $parent = null): FormView |
||
| 60 | } |
||
| 61 |