From 48b521fb229f7a4c8df79dbda054fb1116da56a1 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Tue, 13 Apr 2021 16:34:31 +0200 Subject: [PATCH] Fix linter Signed-off-by: Joas Schilling --- lib/Events/AFormEvent.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Events/AFormEvent.php b/lib/Events/AFormEvent.php index 7566f47..3bffcaf 100644 --- a/lib/Events/AFormEvent.php +++ b/lib/Events/AFormEvent.php @@ -27,9 +27,9 @@ namespace OCA\Registration\Events; use OCP\EventDispatcher\Event; abstract class AFormEvent extends Event { - const STEP_EMAIL = 'email'; - const STEP_VERIFICATION = 'verification'; - const STEP_USER = 'user'; + public const STEP_EMAIL = 'email'; + public const STEP_VERIFICATION = 'verification'; + public const STEP_USER = 'user'; /** @var string */ protected $step;