mirror of
https://github.com/SkillDisplay/TYPO3ContentElements.git
synced 2024-12-03 15:46:10 +01:00
[BUGFIX] changed return types of initializeArguments functions
This commit is contained in:
parent
9076aa0067
commit
eb432ddf94
2 changed files with 2 additions and 2 deletions
|
@ -44,7 +44,7 @@ class SkillGroupingViewHelper extends AbstractViewHelper
|
|||
|
||||
protected $escapeOutput = false;
|
||||
|
||||
public function initializeArguments()
|
||||
public function initializeArguments(): void
|
||||
{
|
||||
$this->registerArgument('skills', 'array', 'An array of skills to group', false, []);
|
||||
$this->registerArgument('skillSet', SkillSet::class, 'The skills of this skill set will be grouped');
|
||||
|
|
|
@ -36,7 +36,7 @@ abstract class VerificationViewHelper extends AbstractViewHelper
|
|||
|
||||
protected $escapeOutput = false;
|
||||
|
||||
public function initializeArguments()
|
||||
public function initializeArguments(): void
|
||||
{
|
||||
$this->registerArgument('skill', 'integer', 'ID of the Skill.');
|
||||
$this->registerArgument('skillSet', 'integer', 'ID of the SkillSet.');
|
||||
|
|
Loading…
Reference in a new issue