PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
laravel
/
passport
/
src
<?php namespace Laravel\Passport; class TransientToken { /** * Determine if the token has a given scope. * * @param string $scope * @return bool */ public function can($scope) { return true; } /** * Determine if the token is missing a given scope. * * @param string $scope * @return bool */ public function cant($scope) { return false; } /** * Determine if the token is a transient JWT token. * * @return bool */ public function transient() { return true; } }
[+]
Exceptions
[-] TransientToken.php
[edit]
[-] AuthCode.php
[edit]
[+]
Bridge
[-] ApiTokenCookieFactory.php
[edit]
[+]
..
[+]
Guards
[-] Scope.php
[edit]
[-] HasApiTokens.php
[edit]
[-] PersonalAccessClient.php
[edit]
[-] Passport.php
[edit]
[-] RefreshTokenRepository.php
[edit]
[+]
Events
[-] Token.php
[edit]
[-] Client.php
[edit]
[-] PersonalAccessTokenFactory.php
[edit]
[-] RouteRegistrar.php
[edit]
[-] ClientRepository.php
[edit]
[-] RefreshToken.php
[edit]
[+]
Console
[-] TokenRepository.php
[edit]
[-] PassportServiceProvider.php
[edit]
[-] PersonalAccessTokenResult.php
[edit]
[+]
Http
[-] PassportUserProvider.php
[edit]