aboutsummaryrefslogtreecommitdiffhomepage
path: root/services/app/src/Auth/AuthenticationResult.php
diff options
context:
space:
mode:
Diffstat (limited to 'services/app/src/Auth/AuthenticationResult.php')
-rw-r--r--services/app/src/Auth/AuthenticationResult.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/services/app/src/Auth/AuthenticationResult.php b/services/app/src/Auth/AuthenticationResult.php
new file mode 100644
index 0000000..08a5722
--- /dev/null
+++ b/services/app/src/Auth/AuthenticationResult.php
@@ -0,0 +1,13 @@
+<?php
+
+declare(strict_types=1);
+
+namespace Nsfisis\Albatross\Auth;
+
+enum AuthenticationResult
+{
+ case Success;
+ case InvalidCredentials;
+ case InvalidJson;
+ case UnknownError;
+}