aboutsummaryrefslogtreecommitdiffhomepage
path: root/services/app/src/Auth/AuthenticationResult.php
blob: 08a57228f1c5f5603074ed8561399f0aea3d39a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

declare(strict_types=1);

namespace Nsfisis\Albatross\Auth;

enum AuthenticationResult
{
    case Success;
    case InvalidCredentials;
    case InvalidJson;
    case UnknownError;
}