Skip to content

Commit

Permalink
Fix bad interface implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrienClairembault authored and cedric-anne committed Feb 12, 2024
1 parent b4b3b3a commit 3c805a4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Form/QuestionType/QuestionTypeLongAnswer.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@
*/
class QuestionTypeLongAnswer implements QuestionTypeInterface
{
#[Override]
public function __construct()
{
}

#[Override]
public function renderAdminstrationTemplate(?Question $question): string
{
Expand Down
5 changes: 5 additions & 0 deletions src/Form/QuestionType/QuestionTypeShortAnswer.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@
*/
abstract class QuestionTypeShortAnswer implements QuestionTypeInterface
{
#[Override]
public function __construct()
{
}

/**
* Specific input type for child classes
*
Expand Down

0 comments on commit 3c805a4

Please sign in to comment.