Laravel AT Protocol Client (alpha & unstable)

Add ScopeAuthorizationFailure enum

+10
+10
src/Enums/ScopeAuthorizationFailure.php
··· 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 + }