Laravel AT Protocol Client (alpha & unstable)

Add AuthType enum for OAuth and Legacy authentication

Changed files
+9
src
Enums
+9
src/Enums/AuthType.php
··· 1 + <?php 2 + 3 + namespace SocialDept\AtpClient\Enums; 4 + 5 + enum AuthType: string 6 + { 7 + case OAuth = 'oauth'; 8 + case Legacy = 'legacy'; 9 + }