aboutsummaryrefslogtreecommitdiff
path: root/lib/models/Freetext.php
diff options
context:
space:
mode:
authorJan-Hendrik Willms <tleilax+github@gmail.com>2023-05-08 17:08:52 +0200
committerJan-Hendrik Willms <tleilax+github@gmail.com>2023-05-08 17:08:52 +0200
commita1fda2758e9c241ac3eb980ac8716dfedbe9dd3c (patch)
tree2190f0478fb153efdb8ba48ebb574c7691f4f351 /lib/models/Freetext.php
parent244d00ed91ad2b4b83e902a45cd6def3d7bc7e86 (diff)
let phpcsfixer fix errors according to @PSR12 rules on lib/modelsphpcsfixer
Diffstat (limited to 'lib/models/Freetext.php')
-rw-r--r--lib/models/Freetext.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/models/Freetext.php b/lib/models/Freetext.php
index 4922030..673270a 100644
--- a/lib/models/Freetext.php
+++ b/lib/models/Freetext.php
@@ -9,7 +9,7 @@ class Freetext extends QuestionnaireQuestion implements QuestionType
* @param bool $active: true if Icon should be clickable, false for black info-icon.
* @return Icon : guestbook-icon.
*/
- public static function getIcon(bool $active = false) : Icon
+ public static function getIcon(bool $active = false): Icon
{
return Icon::create(
static::getIconShape(),
@@ -35,7 +35,7 @@ class Freetext extends QuestionnaireQuestion implements QuestionType
return _('Freitextfrage');
}
- static public function getEditingComponent()
+ public static function getEditingComponent()
{
return ['freetext-edit', ''];
}