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
···
0
0
0
0
0
0
0
0
0
0
···
1
+
<?php
2
+
3
+
namespace SocialDept\AtpClient\Enums;
4
+
5
+
enum ScopeAuthorizationFailure: string
6
+
{
7
+
case Abort = 'abort';
8
+
case Redirect = 'redirect';
9
+
case Exception = 'exception';
10
+
}