Fix linter

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2021-04-13 16:34:31 +02:00
parent da99906fcc
commit 48b521fb22
No known key found for this signature in database
GPG Key ID: 7076EA9751AACDDA
1 changed files with 3 additions and 3 deletions

View File

@ -27,9 +27,9 @@ namespace OCA\Registration\Events;
use OCP\EventDispatcher\Event; use OCP\EventDispatcher\Event;
abstract class AFormEvent extends Event { abstract class AFormEvent extends Event {
const STEP_EMAIL = 'email'; public const STEP_EMAIL = 'email';
const STEP_VERIFICATION = 'verification'; public const STEP_VERIFICATION = 'verification';
const STEP_USER = 'user'; public const STEP_USER = 'user';
/** @var string */ /** @var string */
protected $step; protected $step;