tangled
alpha
login
or
join now
socialde.pt
/
atp-client
3
fork
atom
Laravel AT Protocol Client (alpha & unstable)
3
fork
atom
overview
issues
pulls
pipelines
Add ScopeAuthorizationFailure enum
Miguel Batres
3 months ago
2c0587f5
a53bd853
+10
1 changed file
expand all
collapse all
unified
split
src
Enums
ScopeAuthorizationFailure.php
+10
src/Enums/ScopeAuthorizationFailure.php
···
1
1
+
<?php
2
2
+
3
3
+
namespace SocialDept\AtpClient\Enums;
4
4
+
5
5
+
enum ScopeAuthorizationFailure: string
6
6
+
{
7
7
+
case Abort = 'abort';
8
8
+
case Redirect = 'redirect';
9
9
+
case Exception = 'exception';
10
10
+
}