Edit File: AuthCode.php
<?php namespace Laravel\Passport\Bridge; use League\OAuth2\Server\Entities\AuthCodeEntityInterface; use League\OAuth2\Server\Entities\Traits\AuthCodeTrait; use League\OAuth2\Server\Entities\Traits\EntityTrait; use League\OAuth2\Server\Entities\Traits\TokenEntityTrait; class AuthCode implements AuthCodeEntityInterface { use AuthCodeTrait, EntityTrait, TokenEntityTrait; }
Back to File Manager