tangled
alpha
login
or
join now
socialde.pt
/
atp-client
Laravel AT Protocol Client (alpha & unstable)
3
fork
atom
overview
issues
pulls
pipelines
Add AuthType enum for OAuth and Legacy authentication
Miguel Batres
1 month ago
deea3e6e
ab33045b
options
unified
split
Changed files
+9
src
Enums
AuthType.php
+9
src/Enums/AuthType.php
···
1
1
+
<?php
2
2
+
3
3
+
namespace SocialDept\AtpClient\Enums;
4
4
+
5
5
+
enum AuthType: string
6
6
+
{
7
7
+
case OAuth = 'oauth';
8
8
+
case Legacy = 'legacy';
9
9
+
}