芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/avenida/views/league.tar
oauth2-client/composer.json 0000644 00000002540 14716425166 0011761 0 ustar 00 { "name": "league/oauth2-client", "description": "OAuth 2.0 Client Library", "license": "MIT", "config": { "sort-packages": true }, "require": { "php": ">=5.6.0", "guzzlehttp/guzzle": "^6.0", "paragonie/random_compat": "^1|^2" }, "require-dev": { "eloquent/liberator": "^2.0", "eloquent/phony": "^0.14.1", "jakub-onderka/php-parallel-lint": "~0.9", "phpunit/phpunit": "^5.0", "squizlabs/php_codesniffer": "^2.0" }, "keywords": [ "oauth", "oauth2", "authorization", "authentication", "idp", "identity", "sso", "single sign on" ], "authors": [ { "name": "Alex Bilbie", "email": "hello@alexbilbie.com", "homepage": "http://www.alexbilbie.com", "role": "Developer" }, { "name": "Woody Gilk", "homepage": "https://github.com/shadowhand", "role": "Contributor" } ], "autoload": { "psr-4": { "League\\OAuth2\\Client\\": "src/" } }, "autoload-dev": { "psr-4": { "League\\OAuth2\\Client\\Test\\": "test/src/" } }, "extra": { "branch-alias": { "dev-2.x": "2.0.x-dev" } } } oauth2-client/LICENSE 0000644 00000002122 14716425166 0010240 0 ustar 00 The MIT License (MIT) Copyright (c) 2013-2015 Alex Bilbie
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. oauth2-client/src/Grant/ClientCredentials.php 0000644 00000001737 14716425166 0015215 0 ustar 00 * @license http://opensource.org/licenses/MIT MIT * @link http://thephpleague.com/oauth2-client/ Documentation * @link https://packagist.org/packages/league/oauth2-client Packagist * @link https://github.com/thephpleague/oauth2-client GitHub */ namespace League\OAuth2\Client\Grant; /** * Represents a client credentials grant. * * @link http://tools.ietf.org/html/rfc6749#section-1.3.4 Client Credentials (RFC 6749, §1.3.4) */ class ClientCredentials extends AbstractGrant { /** * @inheritdoc */ protected function getName() { return 'client_credentials'; } /** * @inheritdoc */ protected function getRequiredRequestParameters() { return []; } } oauth2-client/src/Grant/AbstractGrant.php 0000644 00000004645 14716425166 0014361 0 ustar 00 * @license http://opensource.org/licenses/MIT MIT * @link http://thephpleague.com/oauth2-client/ Documentation * @link https://packagist.org/packages/league/oauth2-client Packagist * @link https://github.com/thephpleague/oauth2-client GitHub */ namespace League\OAuth2\Client\Grant; use League\OAuth2\Client\Tool\RequiredParameterTrait; /** * Represents a type of authorization grant. * * An authorization grant is a credential representing the resource * owner's authorization (to access its protected resources) used by the * client to obtain an access token. OAuth 2.0 defines four * grant types -- authorization code, implicit, resource owner password * credentials, and client credentials -- as well as an extensibility * mechanism for defining additional types. * * @link http://tools.ietf.org/html/rfc6749#section-1.3 Authorization Grant (RFC 6749, §1.3) */ abstract class AbstractGrant { use RequiredParameterTrait; /** * Returns the name of this grant, eg. 'grant_name', which is used as the * grant type when encoding URL query parameters. * * @return string */ abstract protected function getName(); /** * Returns a list of all required request parameters. * * @return array */ abstract protected function getRequiredRequestParameters(); /** * Returns this grant's name as its string representation. This allows for * string interpolation when building URL query parameters. * * @return string */ public function __toString() { return $this->getName(); } /** * Prepares an access token request's parameters by checking that all * required parameters are set, then merging with any given defaults. * * @param array $defaults * @param array $options * @return array */ public function prepareRequestParameters(array $defaults, array $options) { $defaults['grant_type'] = $this->getName(); $required = $this->getRequiredRequestParameters(); $provided = array_merge($defaults, $options); $this->checkRequiredParameters($required, $provided); return $provided; } } oauth2-client/src/Grant/error_log; 0000644 00000143316 14716425166 0013120 0 ustar 00 [11-Sep-2023 10:16:52 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [12-Sep-2023 05:59:13 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [14-Sep-2023 13:06:05 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [18-Sep-2023 00:04:39 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [01-Oct-2023 15:41:38 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [01-Oct-2023 15:41:39 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [01-Oct-2023 15:41:42 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [01-Oct-2023 15:41:46 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [01-Oct-2023 15:41:48 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [01-Oct-2023 17:48:37 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [01-Oct-2023 17:48:38 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [01-Oct-2023 17:48:39 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [01-Oct-2023 17:48:45 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [01-Oct-2023 17:48:50 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [15-Nov-2023 20:29:33 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [17-Nov-2023 10:33:00 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [19-Nov-2023 00:11:33 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [20-Nov-2023 11:04:17 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [23-Nov-2023 10:01:10 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [23-Nov-2023 10:01:15 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [23-Nov-2023 10:01:24 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [23-Nov-2023 10:01:29 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [23-Nov-2023 10:01:31 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [26-Nov-2023 01:39:31 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [26-Nov-2023 01:39:43 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [26-Nov-2023 01:39:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [26-Nov-2023 01:39:47 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [26-Nov-2023 01:39:50 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [27-Nov-2023 07:44:45 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [27-Nov-2023 07:44:47 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [27-Nov-2023 07:44:51 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [27-Nov-2023 07:44:56 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [27-Nov-2023 07:45:00 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [27-Nov-2023 14:35:13 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [27-Nov-2023 14:35:23 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [27-Nov-2023 14:35:26 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [27-Nov-2023 14:35:30 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [27-Nov-2023 14:35:33 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [29-Nov-2023 03:24:59 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [31-Dec-2023 10:43:19 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [05-Jan-2024 03:40:57 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [08-Jan-2024 09:05:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [13-Jan-2024 11:38:11 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [16-Feb-2024 20:35:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [26-Feb-2024 07:31:05 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [14-Mar-2024 06:02:12 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [14-Mar-2024 08:51:02 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [15-Mar-2024 14:18:35 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [15-Mar-2024 17:18:09 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [23-Mar-2024 08:51:15 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [31-Mar-2024 21:13:10 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [31-Mar-2024 23:58:35 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [01-Apr-2024 00:54:27 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [04-Apr-2024 06:30:00 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [04-Apr-2024 16:08:30 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [04-Apr-2024 16:35:35 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [04-Apr-2024 18:42:43 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [04-Apr-2024 19:16:14 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [24-Apr-2024 19:03:23 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [27-Apr-2024 11:18:02 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [02-May-2024 07:45:40 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [04-May-2024 22:41:12 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [04-May-2024 23:05:32 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [04-May-2024 23:23:19 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [04-May-2024 23:32:03 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [04-May-2024 23:32:07 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [05-May-2024 04:04:17 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [05-May-2024 06:26:37 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [05-May-2024 07:39:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [05-May-2024 08:27:12 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [05-May-2024 08:37:16 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [05-May-2024 09:01:28 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [05-May-2024 09:19:08 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [05-May-2024 09:27:52 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [05-May-2024 09:27:57 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [05-May-2024 11:32:57 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [05-May-2024 18:47:20 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [05-May-2024 19:11:32 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [05-May-2024 19:19:08 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [05-May-2024 19:26:48 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [05-May-2024 19:26:54 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [13-May-2024 12:16:50 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [13-May-2024 15:00:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [14-May-2024 10:35:50 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [14-May-2024 18:56:32 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [14-May-2024 19:01:24 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [14-May-2024 19:12:52 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [14-May-2024 19:16:06 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [14-May-2024 19:16:18 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [17-May-2024 12:23:17 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [17-May-2024 13:27:02 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [17-May-2024 19:16:12 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [17-May-2024 20:58:20 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [17-May-2024 22:57:12 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [22-May-2024 07:07:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [22-May-2024 19:13:31 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [23-May-2024 10:05:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [23-May-2024 12:29:44 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [23-May-2024 20:48:21 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [07-Jun-2024 03:34:20 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [10-Jun-2024 19:09:46 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [16-Jun-2024 16:13:50 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [19-Jun-2024 00:22:22 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [19-Jun-2024 00:24:22 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [19-Jun-2024 00:24:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [19-Jun-2024 00:25:37 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [19-Jun-2024 00:25:42 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [19-Jun-2024 07:24:17 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [19-Jun-2024 07:26:33 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [19-Jun-2024 07:26:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [19-Jun-2024 07:27:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [19-Jun-2024 07:27:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [19-Jun-2024 22:09:25 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [19-Jun-2024 22:11:41 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [19-Jun-2024 22:12:01 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [19-Jun-2024 22:12:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [19-Jun-2024 22:12:57 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [20-Jun-2024 02:50:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [20-Jun-2024 17:30:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [02-Jul-2024 09:19:44 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [02-Jul-2024 16:32:32 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [02-Jul-2024 18:47:30 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [03-Jul-2024 06:40:42 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [03-Jul-2024 13:24:10 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [03-Jul-2024 16:42:11 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [08-Jul-2024 17:22:02 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [10-Jul-2024 05:56:37 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [13-Jul-2024 07:24:18 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [15-Jul-2024 06:54:38 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [15-Jul-2024 07:04:40 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [17-Jul-2024 02:32:20 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [17-Jul-2024 23:27:16 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [18-Jul-2024 23:15:41 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [20-Jul-2024 02:56:32 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [21-Jul-2024 23:44:54 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [22-Jul-2024 12:46:59 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [22-Jul-2024 17:16:52 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [22-Jul-2024 17:39:32 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [22-Jul-2024 17:56:32 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [22-Jul-2024 18:04:20 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [22-Jul-2024 18:04:24 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [24-Jul-2024 05:11:27 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [24-Jul-2024 05:38:24 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [24-Jul-2024 06:26:09 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [24-Jul-2024 07:05:41 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [26-Jul-2024 04:26:14 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [04-Aug-2024 22:47:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [09-Aug-2024 00:39:10 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [09-Aug-2024 08:27:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [09-Aug-2024 12:35:02 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [09-Aug-2024 13:26:38 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [09-Aug-2024 14:28:22 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [13-Aug-2024 21:15:34 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [19-Aug-2024 03:54:38 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [20-Aug-2024 06:15:14 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [24-Aug-2024 04:17:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [24-Aug-2024 18:02:09 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [30-Aug-2024 07:35:42 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [30-Aug-2024 10:56:44 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [30-Aug-2024 15:10:00 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [30-Aug-2024 17:53:40 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [30-Aug-2024 22:01:29 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [01-Sep-2024 20:52:01 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [01-Sep-2024 21:16:21 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [01-Sep-2024 21:34:09 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [01-Sep-2024 21:42:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [01-Sep-2024 21:42:57 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [05-Sep-2024 00:46:25 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [05-Sep-2024 13:46:58 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [07-Sep-2024 09:46:17 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [07-Sep-2024 09:46:22 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [10-Sep-2024 14:44:32 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [10-Sep-2024 15:05:32 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [10-Sep-2024 15:13:12 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [10-Sep-2024 15:13:16 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [11-Sep-2024 20:50:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [11-Sep-2024 21:12:28 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [11-Sep-2024 21:29:01 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [11-Sep-2024 21:36:32 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [11-Sep-2024 21:36:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [13-Sep-2024 10:16:14 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [13-Sep-2024 10:18:06 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [13-Sep-2024 10:19:58 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [13-Sep-2024 10:20:02 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [15-Sep-2024 13:51:09 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [15-Sep-2024 20:37:04 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [16-Sep-2024 04:15:02 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [16-Sep-2024 08:23:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [16-Sep-2024 09:59:27 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [17-Sep-2024 13:25:18 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [25-Sep-2024 05:11:57 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [26-Sep-2024 23:52:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [28-Sep-2024 04:30:38 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [30-Sep-2024 12:08:31 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [01-Oct-2024 23:08:07 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [04-Oct-2024 01:02:58 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [04-Oct-2024 05:08:01 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [04-Oct-2024 16:47:08 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [06-Oct-2024 02:00:58 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [06-Oct-2024 13:34:45 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [09-Oct-2024 15:35:12 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [11-Oct-2024 06:58:24 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [15-Oct-2024 05:30:48 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [18-Oct-2024 14:25:17 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [18-Oct-2024 14:26:25 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [18-Oct-2024 17:30:45 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [19-Oct-2024 03:14:41 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [23-Oct-2024 10:55:54 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [23-Oct-2024 22:19:48 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [24-Oct-2024 08:57:38 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [28-Oct-2024 21:54:36 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [29-Oct-2024 14:25:59 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [30-Oct-2024 04:52:38 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [31-Oct-2024 07:33:25 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [31-Oct-2024 11:59:50 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [31-Oct-2024 12:11:18 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [31-Oct-2024 12:25:18 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [31-Oct-2024 12:31:22 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [31-Oct-2024 12:31:26 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 [06-Nov-2024 14:48:46 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [09-Nov-2024 03:06:55 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/Password.php on line 22 [09-Nov-2024 03:14:31 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\RequiredParameterTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AbstractGrant.php on line 33 [09-Nov-2024 03:17:19 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/RefreshToken.php on line 22 [09-Nov-2024 03:20:39 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/ClientCredentials.php on line 22 [09-Nov-2024 03:20:43 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Grant/AuthorizationCode.php on line 22 oauth2-client/src/Grant/Password.php 0000644 00000002047 14716425166 0013416 0 ustar 00 * @license http://opensource.org/licenses/MIT MIT * @link http://thephpleague.com/oauth2-client/ Documentation * @link https://packagist.org/packages/league/oauth2-client Packagist * @link https://github.com/thephpleague/oauth2-client GitHub */ namespace League\OAuth2\Client\Grant; /** * Represents a resource owner password credentials grant. * * @link http://tools.ietf.org/html/rfc6749#section-1.3.3 Resource Owner Password Credentials (RFC 6749, §1.3.3) */ class Password extends AbstractGrant { /** * @inheritdoc */ protected function getName() { return 'password'; } /** * @inheritdoc */ protected function getRequiredRequestParameters() { return [ 'username', 'password', ]; } } oauth2-client/src/Grant/GrantFactory.php 0000644 00000005144 14716425166 0014220 0 ustar 00 * @license http://opensource.org/licenses/MIT MIT * @link http://thephpleague.com/oauth2-client/ Documentation * @link https://packagist.org/packages/league/oauth2-client Packagist * @link https://github.com/thephpleague/oauth2-client GitHub */ namespace League\OAuth2\Client\Grant; use League\OAuth2\Client\Grant\Exception\InvalidGrantException; /** * Represents a factory used when retrieving an authorization grant type. */ class GrantFactory { /** * @var array */ protected $registry = []; /** * Defines a grant singleton in the registry. * * @param string $name * @param AbstractGrant $grant * @return self */ public function setGrant($name, AbstractGrant $grant) { $this->registry[$name] = $grant; return $this; } /** * Returns a grant singleton by name. * * If the grant has not be registered, a default grant will be loaded. * * @param string $name * @return AbstractGrant */ public function getGrant($name) { if (empty($this->registry[$name])) { $this->registerDefaultGrant($name); } return $this->registry[$name]; } /** * Registers a default grant singleton by name. * * @param string $name * @return self */ protected function registerDefaultGrant($name) { // PascalCase the grant. E.g: 'authorization_code' becomes 'AuthorizationCode' $class = str_replace(' ', '', ucwords(str_replace(['-', '_'], ' ', $name))); $class = 'League\\OAuth2\\Client\\Grant\\' . $class; $this->checkGrant($class); return $this->setGrant($name, new $class); } /** * Determines if a variable is a valid grant. * * @param mixed $class * @return boolean */ public function isGrant($class) { return is_subclass_of($class, AbstractGrant::class); } /** * Checks if a variable is a valid grant. * * @throws InvalidGrantException * @param mixed $class * @return void */ public function checkGrant($class) { if (!$this->isGrant($class)) { throw new InvalidGrantException(sprintf( 'Grant "%s" must extend AbstractGrant', is_object($class) ? get_class($class) : $class )); } } } oauth2-client/src/Grant/RefreshToken.php 0000644 00000001766 14716425166 0014222 0 ustar 00 * @license http://opensource.org/licenses/MIT MIT * @link http://thephpleague.com/oauth2-client/ Documentation * @link https://packagist.org/packages/league/oauth2-client Packagist * @link https://github.com/thephpleague/oauth2-client GitHub */ namespace League\OAuth2\Client\Grant; /** * Represents a refresh token grant. * * @link http://tools.ietf.org/html/rfc6749#section-6 Refreshing an Access Token (RFC 6749, §6) */ class RefreshToken extends AbstractGrant { /** * @inheritdoc */ protected function getName() { return 'refresh_token'; } /** * @inheritdoc */ protected function getRequiredRequestParameters() { return [ 'refresh_token', ]; } } oauth2-client/src/Grant/Exception/InvalidGrantException.php 0000644 00000001424 14716425166 0020011 0 ustar 00 * @license http://opensource.org/licenses/MIT MIT * @link http://thephpleague.com/oauth2-client/ Documentation * @link https://packagist.org/packages/league/oauth2-client Packagist * @link https://github.com/thephpleague/oauth2-client GitHub */ namespace League\OAuth2\Client\Grant\Exception; use InvalidArgumentException; /** * Exception thrown if the grant does not extend from AbstractGrant. * * @see League\OAuth2\Client\Grant\AbstractGrant */ class InvalidGrantException extends InvalidArgumentException { } oauth2-client/src/Grant/AuthorizationCode.php 0000644 00000001775 14716425166 0015256 0 ustar 00 * @license http://opensource.org/licenses/MIT MIT * @link http://thephpleague.com/oauth2-client/ Documentation * @link https://packagist.org/packages/league/oauth2-client Packagist * @link https://github.com/thephpleague/oauth2-client GitHub */ namespace League\OAuth2\Client\Grant; /** * Represents an authorization code grant. * * @link http://tools.ietf.org/html/rfc6749#section-1.3.1 Authorization Code (RFC 6749, §1.3.1) */ class AuthorizationCode extends AbstractGrant { /** * @inheritdoc */ protected function getName() { return 'authorization_code'; } /** * @inheritdoc */ protected function getRequiredRequestParameters() { return [ 'code', ]; } } oauth2-client/src/Token/AccessToken.php 0000644 00000013512 14716425166 0014022 0 ustar 00 * @license http://opensource.org/licenses/MIT MIT * @link http://thephpleague.com/oauth2-client/ Documentation * @link https://packagist.org/packages/league/oauth2-client Packagist * @link https://github.com/thephpleague/oauth2-client GitHub */ namespace League\OAuth2\Client\Token; use InvalidArgumentException; use JsonSerializable; use RuntimeException; /** * Represents an access token. * * @link http://tools.ietf.org/html/rfc6749#section-1.4 Access Token (RFC 6749, §1.4) */ class AccessToken implements JsonSerializable { /** * @var string */ protected $accessToken; /** * @var int */ protected $expires; /** * @var string */ protected $refreshToken; /** * @var string */ protected $resourceOwnerId; /** * @var array */ protected $values = []; /** * Constructs an access token. * * @param array $options An array of options returned by the service provider * in the access token request. The `access_token` option is required. * @throws InvalidArgumentException if `access_token` is not provided in `$options`. */ public function __construct(array $options = []) { if (empty($options['access_token'])) { throw new InvalidArgumentException('Required option not passed: "access_token"'); } $this->accessToken = $options['access_token']; if (!empty($options['resource_owner_id'])) { $this->resourceOwnerId = $options['resource_owner_id']; } if (!empty($options['refresh_token'])) { $this->refreshToken = $options['refresh_token']; } // We need to know when the token expires. Show preference to // 'expires_in' since it is defined in RFC6749 Section 5.1. // Defer to 'expires' if it is provided instead. if (isset($options['expires_in'])) { if (!is_numeric($options['expires_in'])) { throw new \InvalidArgumentException('expires_in value must be an integer'); } $this->expires = $options['expires_in'] != 0 ? time() + $options['expires_in'] : 0; } elseif (!empty($options['expires'])) { // Some providers supply the seconds until expiration rather than // the exact timestamp. Take a best guess at which we received. $expires = $options['expires']; if (!$this->isExpirationTimestamp($expires)) { $expires += time(); } $this->expires = $expires; } // Capture any additional values that might exist in the token but are // not part of the standard response. Vendors will sometimes pass // additional user data this way. $this->values = array_diff_key($options, array_flip([ 'access_token', 'resource_owner_id', 'refresh_token', 'expires_in', 'expires', ])); } /** * Check if a value is an expiration timestamp or second value. * * @param integer $value * @return bool */ protected function isExpirationTimestamp($value) { // If the given value is larger than the original OAuth 2 draft date, // assume that it is meant to be a (possible expired) timestamp. $oauth2InceptionDate = 1349067600; // 2012-10-01 return ($value > $oauth2InceptionDate); } /** * Returns the access token string of this instance. * * @return string */ public function getToken() { return $this->accessToken; } /** * Returns the refresh token, if defined. * * @return string|null */ public function getRefreshToken() { return $this->refreshToken; } /** * Returns the expiration timestamp, if defined. * * @return integer|null */ public function getExpires() { return $this->expires; } /** * Returns the resource owner identifier, if defined. * * @return string|null */ public function getResourceOwnerId() { return $this->resourceOwnerId; } /** * Checks if this token has expired. * * @return boolean true if the token has expired, false otherwise. * @throws RuntimeException if 'expires' is not set on the token. */ public function hasExpired() { $expires = $this->getExpires(); if (empty($expires)) { throw new RuntimeException('"expires" is not set on the token'); } return $expires < time(); } /** * Returns additional vendor values stored in the token. * * @return array */ public function getValues() { return $this->values; } /** * Returns the token key. * * @return string */ public function __toString() { return (string) $this->getToken(); } /** * Returns an array of parameters to serialize when this is serialized with * json_encode(). * * @return array */ public function jsonSerialize() { $parameters = $this->values; if ($this->accessToken) { $parameters['access_token'] = $this->accessToken; } if ($this->refreshToken) { $parameters['refresh_token'] = $this->refreshToken; } if ($this->expires) { $parameters['expires'] = $this->expires; } if ($this->resourceOwnerId) { $parameters['resource_owner_id'] = $this->resourceOwnerId; } return $parameters; } } oauth2-client/src/Provider/ResourceOwnerInterface.php 0000644 00000001763 14716425166 0016762 0 ustar 00 * @license http://opensource.org/licenses/MIT MIT * @link http://thephpleague.com/oauth2-client/ Documentation * @link https://packagist.org/packages/league/oauth2-client Packagist * @link https://github.com/thephpleague/oauth2-client GitHub */ namespace League\OAuth2\Client\Provider; /** * Classes implementing `ResourceOwnerInterface` may be used to represent * the resource owner authenticated with a service provider. */ interface ResourceOwnerInterface { /** * Returns the identifier of the authorized resource owner. * * @return mixed */ public function getId(); /** * Return all of the owner details available as an array. * * @return array */ public function toArray(); } oauth2-client/src/Provider/GenericResourceOwner.php 0000644 00000002655 14716425166 0016437 0 ustar 00 * @license http://opensource.org/licenses/MIT MIT * @link http://thephpleague.com/oauth2-client/ Documentation * @link https://packagist.org/packages/league/oauth2-client Packagist * @link https://github.com/thephpleague/oauth2-client GitHub */ namespace League\OAuth2\Client\Provider; /** * Represents a generic resource owner for use with the GenericProvider. */ class GenericResourceOwner implements ResourceOwnerInterface { /** * @var array */ protected $response; /** * @var string */ protected $resourceOwnerId; /** * @param array $response * @param string $resourceOwnerId */ public function __construct(array $response, $resourceOwnerId) { $this->response = $response; $this->resourceOwnerId = $resourceOwnerId; } /** * Returns the identifier of the authorized resource owner. * * @return mixed */ public function getId() { return $this->response[$this->resourceOwnerId]; } /** * Returns the raw resource owner response. * * @return array */ public function toArray() { return $this->response; } } oauth2-client/src/Provider/AbstractProvider.php 0000644 00000054436 14716425166 0015622 0 ustar 00 * @license http://opensource.org/licenses/MIT MIT * @link http://thephpleague.com/oauth2-client/ Documentation * @link https://packagist.org/packages/league/oauth2-client Packagist * @link https://github.com/thephpleague/oauth2-client GitHub */ namespace League\OAuth2\Client\Provider; use GuzzleHttp\Client as HttpClient; use GuzzleHttp\ClientInterface as HttpClientInterface; use GuzzleHttp\Exception\BadResponseException; use League\OAuth2\Client\Grant\AbstractGrant; use League\OAuth2\Client\Grant\GrantFactory; use League\OAuth2\Client\Provider\Exception\IdentityProviderException; use League\OAuth2\Client\Token\AccessToken; use League\OAuth2\Client\Tool\ArrayAccessorTrait; use League\OAuth2\Client\Tool\QueryBuilderTrait; use League\OAuth2\Client\Tool\RequestFactory; use Psr\Http\Message\RequestInterface; use Psr\Http\Message\ResponseInterface; use UnexpectedValueException; /** * Represents a service provider (authorization server). * * @link http://tools.ietf.org/html/rfc6749#section-1.1 Roles (RFC 6749, §1.1) */ abstract class AbstractProvider { use ArrayAccessorTrait; use QueryBuilderTrait; /** * @var string Key used in a token response to identify the resource owner. */ const ACCESS_TOKEN_RESOURCE_OWNER_ID = null; /** * @var string HTTP method used to fetch access tokens. */ const METHOD_GET = 'GET'; /** * @var string HTTP method used to fetch access tokens. */ const METHOD_POST = 'POST'; /** * @var string */ protected $clientId; /** * @var string */ protected $clientSecret; /** * @var string */ protected $redirectUri; /** * @var string */ protected $state; /** * @var GrantFactory */ protected $grantFactory; /** * @var RequestFactory */ protected $requestFactory; /** * @var HttpClientInterface */ protected $httpClient; /** * Constructs an OAuth 2.0 service provider. * * @param array $options An array of options to set on this provider. * Options include `clientId`, `clientSecret`, `redirectUri`, and `state`. * Individual providers may introduce more options, as needed. * @param array $collaborators An array of collaborators that may be used to * override this provider's default behavior. Collaborators include * `grantFactory`, `requestFactory`, and `httpClient`. * Individual providers may introduce more collaborators, as needed. */ public function __construct(array $options = [], array $collaborators = []) { foreach ($options as $option => $value) { if (property_exists($this, $option)) { $this->{$option} = $value; } } if (empty($collaborators['grantFactory'])) { $collaborators['grantFactory'] = new GrantFactory(); } $this->setGrantFactory($collaborators['grantFactory']); if (empty($collaborators['requestFactory'])) { $collaborators['requestFactory'] = new RequestFactory(); } $this->setRequestFactory($collaborators['requestFactory']); if (empty($collaborators['httpClient'])) { $client_options = $this->getAllowedClientOptions($options); $collaborators['httpClient'] = new HttpClient( array_intersect_key($options, array_flip($client_options)) ); } $this->setHttpClient($collaborators['httpClient']); } /** * Returns the list of options that can be passed to the HttpClient * * @param array $options An array of options to set on this provider. * Options include `clientId`, `clientSecret`, `redirectUri`, and `state`. * Individual providers may introduce more options, as needed. * @return array The options to pass to the HttpClient constructor */ protected function getAllowedClientOptions(array $options) { $client_options = ['timeout', 'proxy']; // Only allow turning off ssl verification if it's for a proxy if (!empty($options['proxy'])) { $client_options[] = 'verify'; } return $client_options; } /** * Sets the grant factory instance. * * @param GrantFactory $factory * @return self */ public function setGrantFactory(GrantFactory $factory) { $this->grantFactory = $factory; return $this; } /** * Returns the current grant factory instance. * * @return GrantFactory */ public function getGrantFactory() { return $this->grantFactory; } /** * Sets the request factory instance. * * @param RequestFactory $factory * @return self */ public function setRequestFactory(RequestFactory $factory) { $this->requestFactory = $factory; return $this; } /** * Returns the request factory instance. * * @return RequestFactory */ public function getRequestFactory() { return $this->requestFactory; } /** * Sets the HTTP client instance. * * @param HttpClientInterface $client * @return self */ public function setHttpClient(HttpClientInterface $client) { $this->httpClient = $client; return $this; } /** * Returns the HTTP client instance. * * @return HttpClientInterface */ public function getHttpClient() { return $this->httpClient; } /** * Returns the current value of the state parameter. * * This can be accessed by the redirect handler during authorization. * * @return string */ public function getState() { return $this->state; } /** * Returns the base URL for authorizing a client. * * Eg. https://oauth.service.com/authorize * * @return string */ abstract public function getBaseAuthorizationUrl(); /** * Returns the base URL for requesting an access token. * * Eg. https://oauth.service.com/token * * @param array $params * @return string */ abstract public function getBaseAccessTokenUrl(array $params); /** * Returns the URL for requesting the resource owner's details. * * @param AccessToken $token * @return string */ abstract public function getResourceOwnerDetailsUrl(AccessToken $token); /** * Returns a new random string to use as the state parameter in an * authorization flow. * * @param int $length Length of the random string to be generated. * @return string */ protected function getRandomState($length = 32) { // Converting bytes to hex will always double length. Hence, we can reduce // the amount of bytes by half to produce the correct length. return bin2hex(random_bytes($length / 2)); } /** * Returns the default scopes used by this provider. * * This should only be the scopes that are required to request the details * of the resource owner, rather than all the available scopes. * * @return array */ abstract protected function getDefaultScopes(); /** * Returns the string that should be used to separate scopes when building * the URL for requesting an access token. * * @return string Scope separator, defaults to ',' */ protected function getScopeSeparator() { return ','; } /** * Returns authorization parameters based on provided options. * * @param array $options * @return array Authorization parameters */ protected function getAuthorizationParameters(array $options) { if (empty($options['state'])) { $options['state'] = $this->getRandomState(); } if (empty($options['scope'])) { $options['scope'] = $this->getDefaultScopes(); } $options += [ 'response_type' => 'code', 'approval_prompt' => 'auto' ]; if (is_array($options['scope'])) { $separator = $this->getScopeSeparator(); $options['scope'] = implode($separator, $options['scope']); } // Store the state as it may need to be accessed later on. $this->state = $options['state']; // Business code layer might set a different redirect_uri parameter // depending on the context, leave it as-is if (!isset($options['redirect_uri'])) { $options['redirect_uri'] = $this->redirectUri; } $options['client_id'] = $this->clientId; return $options; } /** * Builds the authorization URL's query string. * * @param array $params Query parameters * @return string Query string */ protected function getAuthorizationQuery(array $params) { return $this->buildQueryString($params); } /** * Builds the authorization URL. * * @param array $options * @return string Authorization URL */ public function getAuthorizationUrl(array $options = []) { $base = $this->getBaseAuthorizationUrl(); $params = $this->getAuthorizationParameters($options); $query = $this->getAuthorizationQuery($params); return $this->appendQuery($base, $query); } /** * Redirects the client for authorization. * * @param array $options * @param callable|null $redirectHandler * @return mixed */ public function authorize( array $options = [], callable $redirectHandler = null ) { $url = $this->getAuthorizationUrl($options); if ($redirectHandler) { return $redirectHandler($url, $this); } // @codeCoverageIgnoreStart header('Location: ' . $url); exit; // @codeCoverageIgnoreEnd } /** * Appends a query string to a URL. * * @param string $url The URL to append the query to * @param string $query The HTTP query string * @return string The resulting URL */ protected function appendQuery($url, $query) { $query = trim($query, '?&'); if ($query) { $glue = strstr($url, '?') === false ? '?' : '&'; return $url . $glue . $query; } return $url; } /** * Returns the method to use when requesting an access token. * * @return string HTTP method */ protected function getAccessTokenMethod() { return self::METHOD_POST; } /** * Returns the key used in the access token response to identify the resource owner. * * @return string|null Resource owner identifier key */ protected function getAccessTokenResourceOwnerId() { return static::ACCESS_TOKEN_RESOURCE_OWNER_ID; } /** * Builds the access token URL's query string. * * @param array $params Query parameters * @return string Query string */ protected function getAccessTokenQuery(array $params) { return $this->buildQueryString($params); } /** * Checks that a provided grant is valid, or attempts to produce one if the * provided grant is a string. * * @param AbstractGrant|string $grant * @return AbstractGrant */ protected function verifyGrant($grant) { if (is_string($grant)) { return $this->grantFactory->getGrant($grant); } $this->grantFactory->checkGrant($grant); return $grant; } /** * Returns the full URL to use when requesting an access token. * * @param array $params Query parameters * @return string */ protected function getAccessTokenUrl(array $params) { $url = $this->getBaseAccessTokenUrl($params); if ($this->getAccessTokenMethod() === self::METHOD_GET) { $query = $this->getAccessTokenQuery($params); return $this->appendQuery($url, $query); } return $url; } /** * Returns the request body for requesting an access token. * * @param array $params * @return string */ protected function getAccessTokenBody(array $params) { return $this->buildQueryString($params); } /** * Builds request options used for requesting an access token. * * @param array $params * @return array */ protected function getAccessTokenOptions(array $params) { $options = ['headers' => ['content-type' => 'application/x-www-form-urlencoded']]; if ($this->getAccessTokenMethod() === self::METHOD_POST) { $options['body'] = $this->getAccessTokenBody($params); } return $options; } /** * Returns a prepared request for requesting an access token. * * @param array $params Query string parameters * @return RequestInterface */ protected function getAccessTokenRequest(array $params) { $method = $this->getAccessTokenMethod(); $url = $this->getAccessTokenUrl($params); $options = $this->getAccessTokenOptions($params); return $this->getRequest($method, $url, $options); } /** * Requests an access token using a specified grant and option set. * * @param mixed $grant * @param array $options * @return AccessToken */ public function getAccessToken($grant, array $options = []) { $grant = $this->verifyGrant($grant); $params = [ 'client_id' => $this->clientId, 'client_secret' => $this->clientSecret, 'redirect_uri' => $this->redirectUri, ]; $params = $grant->prepareRequestParameters($params, $options); $request = $this->getAccessTokenRequest($params); $response = $this->getParsedResponse($request); $prepared = $this->prepareAccessTokenResponse($response); $token = $this->createAccessToken($prepared, $grant); return $token; } /** * Returns a PSR-7 request instance that is not authenticated. * * @param string $method * @param string $url * @param array $options * @return RequestInterface */ public function getRequest($method, $url, array $options = []) { return $this->createRequest($method, $url, null, $options); } /** * Returns an authenticated PSR-7 request instance. * * @param string $method * @param string $url * @param AccessToken|string $token * @param array $options Any of "headers", "body", and "protocolVersion". * @return RequestInterface */ public function getAuthenticatedRequest($method, $url, $token, array $options = []) { return $this->createRequest($method, $url, $token, $options); } /** * Creates a PSR-7 request instance. * * @param string $method * @param string $url * @param AccessToken|string|null $token * @param array $options * @return RequestInterface */ protected function createRequest($method, $url, $token, array $options) { $defaults = [ 'headers' => $this->getHeaders($token), ]; $options = array_merge_recursive($defaults, $options); $factory = $this->getRequestFactory(); return $factory->getRequestWithOptions($method, $url, $options); } /** * Sends a request instance and returns a response instance. * * WARNING: This method does not attempt to catch exceptions caused by HTTP * errors! It is recommended to wrap this method in a try/catch block. * * @param RequestInterface $request * @return ResponseInterface */ public function getResponse(RequestInterface $request) { return $this->getHttpClient()->send($request); } /** * Sends a request and returns the parsed response. * * @param RequestInterface $request * @return mixed */ public function getParsedResponse(RequestInterface $request) { try { $response = $this->getResponse($request); } catch (BadResponseException $e) { $response = $e->getResponse(); } $parsed = $this->parseResponse($response); $this->checkResponse($response, $parsed); return $parsed; } /** * Attempts to parse a JSON response. * * @param string $content JSON content from response body * @return array Parsed JSON data * @throws UnexpectedValueException if the content could not be parsed */ protected function parseJson($content) { $content = json_decode($content, true); if (json_last_error() !== JSON_ERROR_NONE) { throw new UnexpectedValueException(sprintf( "Failed to parse JSON response: %s", json_last_error_msg() )); } return $content; } /** * Returns the content type header of a response. * * @param ResponseInterface $response * @return string Semi-colon separated join of content-type headers. */ protected function getContentType(ResponseInterface $response) { return join(';', (array) $response->getHeader('content-type')); } /** * Parses the response according to its content-type header. * * @throws UnexpectedValueException * @param ResponseInterface $response * @return array */ protected function parseResponse(ResponseInterface $response) { $content = (string) $response->getBody(); $type = $this->getContentType($response); if (strpos($type, 'urlencoded') !== false) { parse_str($content, $parsed); return $parsed; } // Attempt to parse the string as JSON regardless of content type, // since some providers use non-standard content types. Only throw an // exception if the JSON could not be parsed when it was expected to. try { return $this->parseJson($content); } catch (UnexpectedValueException $e) { if (strpos($type, 'json') !== false) { throw $e; } if ($response->getStatusCode() == 500) { throw new UnexpectedValueException( 'An OAuth server error was encountered that did not contain a JSON body', 0, $e ); } return $content; } } /** * Checks a provider response for errors. * * @throws IdentityProviderException * @param ResponseInterface $response * @param array|string $data Parsed response data * @return void */ abstract protected function checkResponse(ResponseInterface $response, $data); /** * Prepares an parsed access token response for a grant. * * Custom mapping of expiration, etc should be done here. Always call the * parent method when overloading this method. * * @param mixed $result * @return array */ protected function prepareAccessTokenResponse(array $result) { if ($this->getAccessTokenResourceOwnerId() !== null) { $result['resource_owner_id'] = $this->getValueByKey( $result, $this->getAccessTokenResourceOwnerId() ); } return $result; } /** * Creates an access token from a response. * * The grant that was used to fetch the response can be used to provide * additional context. * * @param array $response * @param AbstractGrant $grant * @return AccessToken */ protected function createAccessToken(array $response, AbstractGrant $grant) { return new AccessToken($response); } /** * Generates a resource owner object from a successful resource owner * details request. * * @param array $response * @param AccessToken $token * @return ResourceOwnerInterface */ abstract protected function createResourceOwner(array $response, AccessToken $token); /** * Requests and returns the resource owner of given access token. * * @param AccessToken $token * @return ResourceOwnerInterface */ public function getResourceOwner(AccessToken $token) { $response = $this->fetchResourceOwnerDetails($token); return $this->createResourceOwner($response, $token); } /** * Requests resource owner details. * * @param AccessToken $token * @return mixed */ protected function fetchResourceOwnerDetails(AccessToken $token) { $url = $this->getResourceOwnerDetailsUrl($token); $request = $this->getAuthenticatedRequest(self::METHOD_GET, $url, $token); return $this->getParsedResponse($request); } /** * Returns the default headers used by this provider. * * Typically this is used to set 'Accept' or 'Content-Type' headers. * * @return array */ protected function getDefaultHeaders() { return []; } /** * Returns the authorization headers used by this provider. * * Typically this is "Bearer" or "MAC". For more information see: * http://tools.ietf.org/html/rfc6749#section-7.1 * * No default is provided, providers must overload this method to activate * authorization headers. * * @param mixed|null $token Either a string or an access token instance * @return array */ protected function getAuthorizationHeaders($token = null) { return []; } /** * Returns all headers used by this provider for a request. * * The request will be authenticated if an access token is provided. * * @param mixed|null $token object or string * @return array */ public function getHeaders($token = null) { if ($token) { return array_merge( $this->getDefaultHeaders(), $this->getAuthorizationHeaders($token) ); } return $this->getDefaultHeaders(); } } oauth2-client/src/Provider/error_log; 0000644 00000103630 14716425166 0013632 0 ustar 00 [20-Sep-2023 05:22:08 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [01-Oct-2023 15:41:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [01-Oct-2023 15:41:54 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [01-Oct-2023 15:41:55 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [01-Oct-2023 17:48:28 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [01-Oct-2023 17:48:29 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [01-Oct-2023 17:48:30 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [06-Nov-2023 19:34:13 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [20-Nov-2023 12:38:20 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [23-Nov-2023 09:06:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [23-Nov-2023 09:06:59 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [23-Nov-2023 09:07:09 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [26-Nov-2023 11:04:14 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [26-Nov-2023 11:04:18 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [26-Nov-2023 11:04:20 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [27-Nov-2023 10:22:05 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [27-Nov-2023 10:57:44 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [27-Nov-2023 10:57:47 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [27-Nov-2023 10:57:50 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [28-Nov-2023 02:21:09 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [28-Nov-2023 02:21:16 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [28-Nov-2023 02:21:18 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [09-Jan-2024 20:38:59 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [16-Jan-2024 00:42:23 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [16-Jan-2024 01:32:50 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [16-Mar-2024 15:39:01 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [17-Mar-2024 06:13:54 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [18-Mar-2024 04:56:16 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [20-Mar-2024 12:39:23 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [03-Apr-2024 11:43:59 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [04-Apr-2024 02:28:05 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [04-Apr-2024 10:01:55 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [04-Apr-2024 21:15:55 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [05-Apr-2024 09:17:58 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [04-May-2024 23:26:40 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [04-May-2024 23:38:04 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [04-May-2024 23:59:51 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [05-May-2024 09:22:28 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [05-May-2024 09:33:51 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [05-May-2024 09:55:19 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [05-May-2024 19:22:28 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [05-May-2024 19:32:32 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [05-May-2024 19:53:12 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [14-May-2024 19:13:52 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [14-May-2024 19:17:37 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [14-May-2024 19:22:05 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [17-May-2024 23:52:58 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [18-May-2024 06:51:34 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [19-May-2024 05:36:38 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [19-May-2024 12:29:19 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [20-May-2024 11:20:42 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [23-May-2024 03:31:32 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [23-May-2024 13:41:55 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [23-May-2024 16:00:44 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [27-May-2024 09:44:34 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [02-Jun-2024 22:21:36 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [02-Jun-2024 22:21:44 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [09-Jun-2024 07:31:57 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [19-Jun-2024 00:25:25 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [19-Jun-2024 00:26:17 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [19-Jun-2024 00:27:25 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [19-Jun-2024 07:27:25 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [19-Jun-2024 07:28:17 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [19-Jun-2024 07:29:25 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [19-Jun-2024 22:12:34 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [19-Jun-2024 22:13:25 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [19-Jun-2024 22:14:33 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [27-Jun-2024 08:40:25 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [27-Jun-2024 17:29:22 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [27-Jun-2024 23:10:25 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [28-Jun-2024 02:25:57 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [28-Jun-2024 12:23:11 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [28-Jun-2024 12:47:37 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [07-Jul-2024 17:13:11 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [09-Jul-2024 13:49:29 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [12-Jul-2024 23:06:40 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [12-Jul-2024 23:43:22 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [15-Jul-2024 05:34:04 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [16-Jul-2024 01:29:58 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [21-Jul-2024 07:02:00 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [22-Jul-2024 17:59:44 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [22-Jul-2024 18:09:16 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [22-Jul-2024 18:29:24 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [22-Jul-2024 23:41:59 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [25-Jul-2024 16:40:57 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [30-Jul-2024 14:19:37 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [31-Jul-2024 06:21:17 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [02-Aug-2024 17:12:21 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [02-Aug-2024 23:58:56 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [03-Aug-2024 02:43:20 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [03-Aug-2024 03:52:42 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [04-Aug-2024 03:49:23 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [04-Aug-2024 18:52:41 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [05-Aug-2024 22:37:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [07-Aug-2024 09:35:57 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [07-Aug-2024 10:15:10 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [14-Aug-2024 07:30:40 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [16-Aug-2024 04:37:12 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [18-Aug-2024 10:42:57 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [18-Aug-2024 10:43:05 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [18-Aug-2024 11:59:34 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [27-Aug-2024 00:36:56 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [01-Sep-2024 21:37:29 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [01-Sep-2024 21:48:53 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [01-Sep-2024 22:10:41 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [05-Sep-2024 03:51:51 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [07-Sep-2024 16:51:17 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [07-Sep-2024 16:51:21 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [07-Sep-2024 17:00:21 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [07-Sep-2024 17:00:26 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [07-Sep-2024 17:05:53 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [07-Sep-2024 17:06:01 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [09-Sep-2024 00:10:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [09-Sep-2024 06:17:58 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [09-Sep-2024 08:44:19 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [09-Sep-2024 10:34:35 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [10-Sep-2024 14:45:11 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [11-Sep-2024 21:32:08 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [11-Sep-2024 21:41:08 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [11-Sep-2024 21:59:16 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [14-Sep-2024 01:23:32 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [16-Sep-2024 18:31:38 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [19-Sep-2024 20:15:07 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [24-Sep-2024 22:45:59 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [25-Sep-2024 20:25:55 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [27-Sep-2024 17:11:52 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [01-Oct-2024 15:25:16 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [01-Oct-2024 17:57:22 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [09-Oct-2024 20:22:22 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [11-Oct-2024 06:26:07 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [12-Oct-2024 00:49:15 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [12-Oct-2024 13:29:24 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [13-Oct-2024 11:14:35 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [17-Oct-2024 18:49:36 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [17-Oct-2024 22:58:52 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [18-Oct-2024 10:14:57 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [20-Oct-2024 12:08:39 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [31-Oct-2024 12:27:26 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [31-Oct-2024 12:35:37 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [31-Oct-2024 12:48:14 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [01-Nov-2024 01:58:49 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [01-Nov-2024 13:08:34 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 [09-Nov-2024 03:20:03 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Client\Provider\AbstractProvider' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericProvider.php on line 27 [09-Nov-2024 03:23:31 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Client\Tool\ArrayAccessorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/AbstractProvider.php on line 38 [09-Nov-2024 03:35:43 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Client\Provider\ResourceOwnerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-client/src/Provider/GenericResourceOwner.php on line 20 oauth2-client/src/Provider/GenericProvider.php 0000644 00000012222 14716425166 0015416 0 ustar 00 * @license http://opensource.org/licenses/MIT MIT * @link http://thephpleague.com/oauth2-client/ Documentation * @link https://packagist.org/packages/league/oauth2-client Packagist * @link https://github.com/thephpleague/oauth2-client GitHub */ namespace League\OAuth2\Client\Provider; use InvalidArgumentException; use League\OAuth2\Client\Provider\Exception\IdentityProviderException; use League\OAuth2\Client\Token\AccessToken; use League\OAuth2\Client\Tool\BearerAuthorizationTrait; use Psr\Http\Message\ResponseInterface; /** * Represents a generic service provider that may be used to interact with any * OAuth 2.0 service provider, using Bearer token authentication. */ class GenericProvider extends AbstractProvider { use BearerAuthorizationTrait; /** * @var string */ private $urlAuthorize; /** * @var string */ private $urlAccessToken; /** * @var string */ private $urlResourceOwnerDetails; /** * @var string */ private $accessTokenMethod; /** * @var string */ private $accessTokenResourceOwnerId; /** * @var array|null */ private $scopes = null; /** * @var string */ private $scopeSeparator; /** * @var string */ private $responseError = 'error'; /** * @var string */ private $responseCode; /** * @var string */ private $responseResourceOwnerId = 'id'; /** * @param array $options * @param array $collaborators */ public function __construct(array $options = [], array $collaborators = []) { $this->assertRequiredOptions($options); $possible = $this->getConfigurableOptions(); $configured = array_intersect_key($options, array_flip($possible)); foreach ($configured as $key => $value) { $this->$key = $value; } // Remove all options that are only used locally $options = array_diff_key($options, $configured); parent::__construct($options, $collaborators); } /** * Returns all options that can be configured. * * @return array */ protected function getConfigurableOptions() { return array_merge($this->getRequiredOptions(), [ 'accessTokenMethod', 'accessTokenResourceOwnerId', 'scopeSeparator', 'responseError', 'responseCode', 'responseResourceOwnerId', 'scopes', ]); } /** * Returns all options that are required. * * @return array */ protected function getRequiredOptions() { return [ 'urlAuthorize', 'urlAccessToken', 'urlResourceOwnerDetails', ]; } /** * Verifies that all required options have been passed. * * @param array $options * @return void * @throws InvalidArgumentException */ private function assertRequiredOptions(array $options) { $missing = array_diff_key(array_flip($this->getRequiredOptions()), $options); if (!empty($missing)) { throw new InvalidArgumentException( 'Required options not defined: ' . implode(', ', array_keys($missing)) ); } } /** * @inheritdoc */ public function getBaseAuthorizationUrl() { return $this->urlAuthorize; } /** * @inheritdoc */ public function getBaseAccessTokenUrl(array $params) { return $this->urlAccessToken; } /** * @inheritdoc */ public function getResourceOwnerDetailsUrl(AccessToken $token) { return $this->urlResourceOwnerDetails; } /** * @inheritdoc */ public function getDefaultScopes() { return $this->scopes; } /** * @inheritdoc */ protected function getAccessTokenMethod() { return $this->accessTokenMethod ?: parent::getAccessTokenMethod(); } /** * @inheritdoc */ protected function getAccessTokenResourceOwnerId() { return $this->accessTokenResourceOwnerId ?: parent::getAccessTokenResourceOwnerId(); } /** * @inheritdoc */ protected function getScopeSeparator() { return $this->scopeSeparator ?: parent::getScopeSeparator(); } /** * @inheritdoc */ protected function checkResponse(ResponseInterface $response, $data) { if (!empty($data[$this->responseError])) { $error = $data[$this->responseError]; $code = $this->responseCode ? $data[$this->responseCode] : 0; throw new IdentityProviderException($error, $code, $data); } } /** * @inheritdoc */ protected function createResourceOwner(array $response, AccessToken $token) { return new GenericResourceOwner($response, $this->responseResourceOwnerId); } } oauth2-client/src/Provider/Exception/IdentityProviderException.php 0000644 00000002274 14716425166 0021456 0 ustar 00 * @license http://opensource.org/licenses/MIT MIT * @link http://thephpleague.com/oauth2-client/ Documentation * @link https://packagist.org/packages/league/oauth2-client Packagist * @link https://github.com/thephpleague/oauth2-client GitHub */ namespace League\OAuth2\Client\Provider\Exception; /** * Exception thrown if the provider response contains errors. */ class IdentityProviderException extends \Exception { /** * @var mixed */ protected $response; /** * @param string $message * @param int $code * @param array|string $response The response body */ public function __construct($message, $code, $response) { $this->response = $response; parent::__construct($message, $code); } /** * Returns the exception's response body. * * @return array|string */ public function getResponseBody() { return $this->response; } } oauth2-client/src/Tool/MacAuthorizationTrait.php 0000644 00000004507 14716425166 0015746 0 ustar 00 * @license http://opensource.org/licenses/MIT MIT * @link http://thephpleague.com/oauth2-client/ Documentation * @link https://packagist.org/packages/league/oauth2-client Packagist * @link https://github.com/thephpleague/oauth2-client GitHub */ namespace League\OAuth2\Client\Tool; use League\OAuth2\Client\Token\AccessToken; /** * Enables `MAC` header authorization for providers. * * @link http://tools.ietf.org/html/draft-ietf-oauth-v2-http-mac-05 Message Authentication Code (MAC) Tokens */ trait MacAuthorizationTrait { /** * Returns the id of this token for MAC generation. * * @param AccessToken $token * @return string */ abstract protected function getTokenId(AccessToken $token); /** * Returns the MAC signature for the current request. * * @param string $id * @param integer $ts * @param string $nonce * @return string */ abstract protected function getMacSignature($id, $ts, $nonce); /** * Returns a new random string to use as the state parameter in an * authorization flow. * * @param int $length Length of the random string to be generated. * @return string */ abstract protected function getRandomState($length); /** * Returns the authorization headers for the 'mac' grant. * * @param AccessToken $token * @return array * @codeCoverageIgnore * * @todo This is currently untested and provided only as an example. If you * complete the implementation, please create a pull request for * https://github.com/thephpleague/oauth2-client */ protected function getAuthorizationHeaders($token) { $ts = time(); $id = $this->getTokenId($token); $nonce = $this->getRandomState(16); $mac = $this->getMacSignature($id, $ts, $nonce); $parts = []; foreach (compact('id', 'ts', 'nonce', 'mac') as $key => $value) { $parts[] = sprintf('%s="%s"', $key, $value); } return ['Authorization' => 'MAC ' . implode(', ', $parts)]; } } oauth2-client/src/Tool/QueryBuilderTrait.php 0000644 00000001611 14716425166 0015072 0 ustar 00 * @license http://opensource.org/licenses/MIT MIT * @link http://thephpleague.com/oauth2-client/ Documentation * @link https://packagist.org/packages/league/oauth2-client Packagist * @link https://github.com/thephpleague/oauth2-client GitHub */ namespace League\OAuth2\Client\Tool; /** * Provides a standard way to generate query strings. */ trait QueryBuilderTrait { /** * Build a query string from an array. * * @param array $params * * @return string */ protected function buildQueryString(array $params) { return http_build_query($params, null, '&', \PHP_QUERY_RFC3986); } } oauth2-client/src/Tool/BearerAuthorizationTrait.php 0000644 00000002020 14716425166 0016432 0 ustar 00 * @license http://opensource.org/licenses/MIT MIT * @link http://thephpleague.com/oauth2-client/ Documentation * @link https://packagist.org/packages/league/oauth2-client Packagist * @link https://github.com/thephpleague/oauth2-client GitHub */ namespace League\OAuth2\Client\Tool; /** * Enables `Bearer` header authorization for providers. * * @link http://tools.ietf.org/html/rfc6750 Bearer Token Usage (RFC 6750) */ trait BearerAuthorizationTrait { /** * Returns authorization headers for the 'bearer' grant. * * @param mixed|null $token Either a string or an access token instance * @return array */ protected function getAuthorizationHeaders($token = null) { return ['Authorization' => 'Bearer ' . $token]; } } oauth2-client/src/Tool/RequiredParameterTrait.php 0000644 00000002776 14716425166 0016114 0 ustar 00 * @license http://opensource.org/licenses/MIT MIT * @link http://thephpleague.com/oauth2-client/ Documentation * @link https://packagist.org/packages/league/oauth2-client Packagist * @link https://github.com/thephpleague/oauth2-client GitHub */ namespace League\OAuth2\Client\Tool; use BadMethodCallException; /** * Provides functionality to check for required parameters. */ trait RequiredParameterTrait { /** * Checks for a required parameter in a hash. * * @throws BadMethodCallException * @param string $name * @param array $params * @return void */ private function checkRequiredParameter($name, array $params) { if (!isset($params[$name])) { throw new BadMethodCallException(sprintf( 'Required parameter not passed: "%s"', $name )); } } /** * Checks for multiple required parameters in a hash. * * @throws InvalidArgumentException * @param array $names * @param array $params * @return void */ private function checkRequiredParameters(array $names, array $params) { foreach ($names as $name) { $this->checkRequiredParameter($name, $params); } } } oauth2-client/src/Tool/RequestFactory.php 0000644 00000004427 14716425166 0014442 0 ustar 00 * @license http://opensource.org/licenses/MIT MIT * @link http://thephpleague.com/oauth2-client/ Documentation * @link https://packagist.org/packages/league/oauth2-client Packagist * @link https://github.com/thephpleague/oauth2-client GitHub */ namespace League\OAuth2\Client\Tool; use GuzzleHttp\Psr7\Request; /** * Used to produce PSR-7 Request instances. * * @link https://github.com/guzzle/guzzle/pull/1101 */ class RequestFactory { /** * Creates a PSR-7 Request instance. * * @param null|string $method HTTP method for the request. * @param null|string $uri URI for the request. * @param array $headers Headers for the message. * @param string|resource|StreamInterface $body Message body. * @param string $version HTTP protocol version. * * @return Request */ public function getRequest( $method, $uri, array $headers = [], $body = null, $version = '1.1' ) { return new Request($method, $uri, $headers, $body, $version); } /** * Parses simplified options. * * @param array $options Simplified options. * * @return array Extended options for use with getRequest. */ protected function parseOptions(array $options) { // Should match default values for getRequest $defaults = [ 'headers' => [], 'body' => null, 'version' => '1.1', ]; return array_merge($defaults, $options); } /** * Creates a request using a simplified array of options. * * @param null|string $method * @param null|string $uri * @param array $options * * @return Request */ public function getRequestWithOptions($method, $uri, array $options = []) { $options = $this->parseOptions($options); return $this->getRequest( $method, $uri, $options['headers'], $options['body'], $options['version'] ); } } oauth2-client/src/Tool/ArrayAccessorTrait.php 0000644 00000002637 14716425166 0015230 0 ustar 00 * @license http://opensource.org/licenses/MIT MIT * @link http://thephpleague.com/oauth2-client/ Documentation * @link https://packagist.org/packages/league/oauth2-client Packagist * @link https://github.com/thephpleague/oauth2-client GitHub */ namespace League\OAuth2\Client\Tool; /** * Provides generic array navigation tools. */ trait ArrayAccessorTrait { /** * Returns a value by key using dot notation. * * @param array $data * @param string $key * @param mixed|null $default * @return mixed */ private function getValueByKey(array $data, $key, $default = null) { if (!is_string($key) || empty($key) || !count($data)) { return $default; } if (strpos($key, '.') !== false) { $keys = explode('.', $key); foreach ($keys as $innerKey) { if (!is_array($data) || !array_key_exists($innerKey, $data)) { return $default; } $data = $data[$innerKey]; } return $data; } return array_key_exists($key, $data) ? $data[$key] : $default; } } event/composer.json 0000644 00000001374 14716425166 0010430 0 ustar 00 { "name": "league/event", "description": "Event package", "keywords": ["event", "emitter", "listener"], "license": "MIT", "authors": [ { "name": "Frank de Jonge", "email": "info@frenky.net" } ], "require": { "php": ">=5.4.0" }, "require-dev": { "henrikbjorn/phpspec-code-coverage": "~1.0.1", "phpspec/phpspec": "^2.2" }, "autoload": { "psr-4": { "League\\Event\\": "src/" } }, "autoload-dev": { "psr-4": { "League\\Event\\Stub\\": "stubs/" } }, "config": { "bin-dir": "bin" }, "extra": { "branch-alias": { "dev-master": "2.2-dev" } } } event/LICENSE 0000644 00000002042 14716425166 0006704 0 ustar 00 Copyright (c) 2014 Frank de Jonge Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. event/src/ListenerProviderInterface.php 0000644 00000000435 14716425166 0014324 0 ustar 00 events[] = $event; return $this; } /** * Release all the added events. * * @return EventInterface[] */ public function releaseEvents() { $events = $this->events; $this->events = []; return $events; } } event/src/EmitterInterface.php 0000644 00000004301 14716425166 0012431 0 ustar 00 bufferedEvents[] = $event; return $event; } /** * @inheritdoc */ public function emitBatch(array $events) { foreach ($events as $event) { $this->bufferedEvents[] = $event; } return $events; } /** * Emit the buffered events. * * @return array */ public function emitBufferedEvents() { $result = []; while ($event = array_shift($this->bufferedEvents)) { $result[] = parent::emit($event); } return $result; } } event/src/EmitterAwareTrait.php 0000644 00000001235 14716425166 0012577 0 ustar 00 emitter = $emitter; return $this; } /** * Get the Emitter. * * @return EmitterInterface */ public function getEmitter() { if (! $this->emitter) { $this->emitter = new Emitter(); } return $this->emitter; } } event/src/GeneratorInterface.php 0000644 00000000302 14716425166 0012743 0 ustar 00 callback = $callback; } /** * Get the callback. * * @return callable */ public function getCallback() { return $this->callback; } /** * @inheritdoc */ public function handle(EventInterface $event) { call_user_func_array($this->callback, func_get_args()); } /** * @inheritdoc */ public function isListener($listener) { if ($listener instanceof CallbackListener) { $listener = $listener->getCallback(); } return $this->callback === $listener; } /** * Named constructor * * @param callable $callable * * @return static */ public static function fromCallable(callable $callable) { return new static($callable); } } event/src/error_log; 0000644 00000333276 14716425166 0010516 0 ustar 00 [14-Sep-2023 05:53:15 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [15-Sep-2023 01:53:49 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [17-Sep-2023 10:48:09 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [18-Sep-2023 08:00:40 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [20-Sep-2023 13:27:30 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [27-Sep-2023 13:45:55 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [29-Sep-2023 12:33:47 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [29-Sep-2023 12:33:48 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [29-Sep-2023 12:33:55 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [29-Sep-2023 12:33:56 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [29-Sep-2023 12:33:57 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [29-Sep-2023 12:33:58 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [29-Sep-2023 12:33:59 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [29-Sep-2023 12:34:05 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [29-Sep-2023 12:34:06 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [29-Sep-2023 12:34:07 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [29-Sep-2023 12:34:09 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [29-Sep-2023 15:51:01 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [29-Sep-2023 15:51:05 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [29-Sep-2023 15:51:12 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [29-Sep-2023 15:51:13 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [29-Sep-2023 15:51:20 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [29-Sep-2023 15:51:21 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [29-Sep-2023 15:51:23 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [29-Sep-2023 15:51:25 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [29-Sep-2023 15:51:27 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [29-Sep-2023 15:51:29 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [29-Sep-2023 15:51:39 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [30-Sep-2023 08:27:31 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [30-Sep-2023 18:11:31 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [30-Sep-2023 18:11:32 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [30-Sep-2023 18:11:35 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [30-Sep-2023 18:11:36 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [30-Sep-2023 18:11:37 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [30-Sep-2023 18:11:38 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [30-Sep-2023 18:11:38 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [30-Sep-2023 18:11:39 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [30-Sep-2023 18:11:41 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [30-Sep-2023 18:11:42 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [30-Sep-2023 18:11:44 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [30-Sep-2023 19:34:58 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [30-Sep-2023 19:34:59 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [30-Sep-2023 19:35:02 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [30-Sep-2023 19:35:03 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [30-Sep-2023 19:35:04 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [30-Sep-2023 19:35:04 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [30-Sep-2023 19:35:06 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [30-Sep-2023 19:35:07 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [30-Sep-2023 19:35:11 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [30-Sep-2023 19:35:12 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [30-Sep-2023 19:35:13 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [10-Oct-2023 15:28:12 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [16-Nov-2023 15:52:14 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [18-Nov-2023 02:22:53 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [18-Nov-2023 03:14:54 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [18-Nov-2023 21:29:00 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [19-Nov-2023 19:36:08 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [19-Nov-2023 19:36:10 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [19-Nov-2023 19:36:14 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [19-Nov-2023 19:36:15 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [19-Nov-2023 19:36:18 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [19-Nov-2023 19:36:22 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [19-Nov-2023 19:36:24 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [19-Nov-2023 19:36:30 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [19-Nov-2023 19:36:32 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [19-Nov-2023 19:36:33 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [19-Nov-2023 19:37:04 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [22-Nov-2023 12:28:57 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [22-Nov-2023 12:29:00 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [22-Nov-2023 12:29:04 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [22-Nov-2023 12:29:06 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [22-Nov-2023 12:29:07 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [22-Nov-2023 12:29:09 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [22-Nov-2023 12:29:13 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [22-Nov-2023 12:29:21 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [22-Nov-2023 12:29:23 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [22-Nov-2023 12:29:24 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [22-Nov-2023 12:29:29 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [22-Nov-2023 15:35:59 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [22-Nov-2023 15:36:02 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [22-Nov-2023 15:36:06 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [22-Nov-2023 15:36:08 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [22-Nov-2023 15:36:12 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [22-Nov-2023 15:36:15 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [22-Nov-2023 15:36:16 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [22-Nov-2023 15:36:24 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [22-Nov-2023 15:36:26 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [22-Nov-2023 15:36:30 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [22-Nov-2023 15:36:38 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [23-Nov-2023 14:46:33 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [23-Nov-2023 14:46:36 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [23-Nov-2023 14:46:43 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [23-Nov-2023 14:46:45 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [23-Nov-2023 14:46:47 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [23-Nov-2023 14:46:50 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [23-Nov-2023 14:46:52 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [23-Nov-2023 14:46:54 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [23-Nov-2023 14:47:00 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [23-Nov-2023 14:47:04 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [23-Nov-2023 14:47:06 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [25-Nov-2023 17:26:14 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [26-Nov-2023 03:44:38 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [26-Nov-2023 15:09:10 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [27-Nov-2023 18:53:35 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [02-Dec-2023 08:24:31 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [07-Dec-2023 16:10:19 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [30-Dec-2023 18:58:11 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [01-Jan-2024 14:35:00 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [05-Jan-2024 05:20:07 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [10-Jan-2024 10:21:55 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [11-Jan-2024 04:29:00 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [11-Jan-2024 11:31:00 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [15-Jan-2024 07:03:11 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [19-Jan-2024 14:43:23 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [20-Jan-2024 05:14:10 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [21-Jan-2024 12:45:12 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [22-Jan-2024 10:50:56 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [09-Feb-2024 04:53:42 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [15-Feb-2024 14:05:33 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [19-Feb-2024 03:20:39 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [05-Mar-2024 07:33:18 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [09-Mar-2024 04:02:04 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [14-Mar-2024 15:11:03 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [14-Mar-2024 18:12:28 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [15-Mar-2024 06:39:17 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [15-Mar-2024 09:52:50 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [16-Mar-2024 05:17:14 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [16-Mar-2024 12:05:58 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [16-Mar-2024 12:29:13 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [18-Mar-2024 00:51:17 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [18-Mar-2024 01:21:22 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [18-Mar-2024 01:21:32 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [18-Mar-2024 01:54:04 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [22-Mar-2024 03:14:52 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [24-Mar-2024 19:41:39 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [25-Mar-2024 11:13:38 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [26-Mar-2024 08:35:50 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [27-Mar-2024 04:13:03 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [31-Mar-2024 18:45:06 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [31-Mar-2024 20:09:39 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [31-Mar-2024 21:26:38 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [31-Mar-2024 23:13:52 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [01-Apr-2024 00:07:47 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [01-Apr-2024 10:32:28 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [01-Apr-2024 11:20:16 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [01-Apr-2024 11:42:03 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [01-Apr-2024 15:10:03 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [01-Apr-2024 15:41:26 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [01-Apr-2024 19:43:27 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [01-Apr-2024 23:08:33 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [02-Apr-2024 02:02:35 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [02-Apr-2024 03:17:15 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [02-Apr-2024 06:09:36 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [02-Apr-2024 16:57:00 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [06-Apr-2024 07:33:31 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [17-Apr-2024 02:22:29 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [20-Apr-2024 20:47:55 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [25-Apr-2024 11:31:24 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [29-Apr-2024 02:33:18 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [29-Apr-2024 04:50:36 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [02-May-2024 00:34:31 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [03-May-2024 04:15:45 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [04-May-2024 21:11:13 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [04-May-2024 21:13:33 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [04-May-2024 21:16:27 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [04-May-2024 21:17:08 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [04-May-2024 21:17:35 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [04-May-2024 21:18:08 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [04-May-2024 21:28:33 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [04-May-2024 21:34:21 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [04-May-2024 22:46:36 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [04-May-2024 22:46:40 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [04-May-2024 22:46:48 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [04-May-2024 22:46:56 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [04-May-2024 22:47:00 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [04-May-2024 22:47:04 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [04-May-2024 22:47:12 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [04-May-2024 22:47:16 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [04-May-2024 22:47:20 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [04-May-2024 22:47:24 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [04-May-2024 22:47:28 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [05-May-2024 02:41:25 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [05-May-2024 08:42:36 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [05-May-2024 08:42:40 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [05-May-2024 08:42:47 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [05-May-2024 08:42:56 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [05-May-2024 08:43:00 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [05-May-2024 08:43:03 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [05-May-2024 08:43:12 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [05-May-2024 08:43:16 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [05-May-2024 08:43:19 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [05-May-2024 08:43:23 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [05-May-2024 08:43:28 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [05-May-2024 18:52:40 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [05-May-2024 18:52:44 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [05-May-2024 18:52:52 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [05-May-2024 18:53:00 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [05-May-2024 18:53:04 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [05-May-2024 18:53:08 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [05-May-2024 18:53:16 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [05-May-2024 18:53:24 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [05-May-2024 18:53:24 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [05-May-2024 18:53:28 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [05-May-2024 18:53:32 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [09-May-2024 00:14:46 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [09-May-2024 02:42:32 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [12-May-2024 23:52:45 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [13-May-2024 17:45:14 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [13-May-2024 18:36:58 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [14-May-2024 05:19:49 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [14-May-2024 05:57:48 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [14-May-2024 18:57:18 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [14-May-2024 18:57:20 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [14-May-2024 18:57:28 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [14-May-2024 18:57:36 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [14-May-2024 18:57:40 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [14-May-2024 18:57:44 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [14-May-2024 18:57:52 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [14-May-2024 18:57:57 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [14-May-2024 18:58:00 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [14-May-2024 18:58:04 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [14-May-2024 18:58:08 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [15-May-2024 05:11:16 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [15-May-2024 15:40:56 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [16-May-2024 08:49:37 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [16-May-2024 20:56:04 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [17-May-2024 11:38:37 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [17-May-2024 21:02:19 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [19-May-2024 03:06:34 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [19-May-2024 05:01:02 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [19-May-2024 22:01:04 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [20-May-2024 14:32:34 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [22-May-2024 14:32:35 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [24-May-2024 04:43:26 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [30-May-2024 08:44:21 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [30-May-2024 23:26:11 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [01-Jun-2024 04:38:33 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [01-Jun-2024 09:30:43 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [02-Jun-2024 18:23:31 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [03-Jun-2024 15:35:04 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [04-Jun-2024 07:56:58 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [05-Jun-2024 06:35:53 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [05-Jun-2024 07:28:22 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [05-Jun-2024 08:57:20 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [05-Jun-2024 09:03:30 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [07-Jun-2024 05:08:19 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [07-Jun-2024 21:16:06 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [09-Jun-2024 04:33:12 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [14-Jun-2024 03:08:02 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [14-Jun-2024 03:28:52 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [15-Jun-2024 04:31:06 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [18-Jun-2024 04:10:29 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [18-Jun-2024 17:05:53 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [18-Jun-2024 19:49:15 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [19-Jun-2024 00:22:33 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [19-Jun-2024 00:22:37 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [19-Jun-2024 00:22:45 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [19-Jun-2024 00:22:53 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [19-Jun-2024 00:22:57 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [19-Jun-2024 00:23:01 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [19-Jun-2024 00:23:09 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [19-Jun-2024 00:23:13 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [19-Jun-2024 00:23:18 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [19-Jun-2024 00:23:21 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [19-Jun-2024 00:23:25 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [19-Jun-2024 07:24:37 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [19-Jun-2024 07:24:41 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [19-Jun-2024 07:24:49 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [19-Jun-2024 07:24:57 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [19-Jun-2024 07:25:01 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [19-Jun-2024 07:25:05 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [19-Jun-2024 07:25:13 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [19-Jun-2024 07:25:17 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [19-Jun-2024 07:25:21 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [19-Jun-2024 07:25:25 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [19-Jun-2024 07:25:29 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [19-Jun-2024 17:33:08 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [19-Jun-2024 18:36:42 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [19-Jun-2024 22:09:45 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [19-Jun-2024 22:09:49 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [19-Jun-2024 22:09:57 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [19-Jun-2024 22:10:05 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [19-Jun-2024 22:10:09 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [19-Jun-2024 22:10:13 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [19-Jun-2024 22:10:21 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [19-Jun-2024 22:10:25 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [19-Jun-2024 22:10:29 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [19-Jun-2024 22:10:33 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [19-Jun-2024 22:10:37 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [19-Jun-2024 22:56:48 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [20-Jun-2024 00:28:54 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [20-Jun-2024 01:26:44 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [20-Jun-2024 14:39:05 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [20-Jun-2024 14:47:40 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [20-Jun-2024 19:24:54 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [25-Jun-2024 21:10:39 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [27-Jun-2024 00:26:13 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [27-Jun-2024 04:41:58 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [27-Jun-2024 07:38:59 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [27-Jun-2024 16:30:03 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [27-Jun-2024 19:03:27 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [28-Jun-2024 02:18:26 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [03-Jul-2024 13:59:53 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [03-Jul-2024 20:32:47 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [07-Jul-2024 16:00:10 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [08-Jul-2024 06:10:46 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [08-Jul-2024 06:47:05 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [08-Jul-2024 06:58:36 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [12-Jul-2024 11:16:50 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [13-Jul-2024 15:17:38 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [13-Jul-2024 16:12:58 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [14-Jul-2024 03:16:26 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [14-Jul-2024 03:23:25 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [14-Jul-2024 03:45:15 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [14-Jul-2024 09:51:18 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [15-Jul-2024 04:48:05 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [17-Jul-2024 10:30:40 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [17-Jul-2024 17:08:54 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [18-Jul-2024 06:22:07 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [18-Jul-2024 08:01:30 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [18-Jul-2024 11:21:19 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [18-Jul-2024 15:27:03 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [18-Jul-2024 18:11:53 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [18-Jul-2024 22:54:56 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [18-Jul-2024 23:14:32 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [19-Jul-2024 03:06:19 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [19-Jul-2024 21:13:09 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [19-Jul-2024 22:52:46 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [20-Jul-2024 08:07:41 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [21-Jul-2024 01:51:46 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [21-Jul-2024 02:41:36 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [22-Jul-2024 12:05:52 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [22-Jul-2024 12:31:30 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [22-Jul-2024 17:22:04 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [22-Jul-2024 17:22:08 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [22-Jul-2024 17:22:16 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [22-Jul-2024 17:22:24 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [22-Jul-2024 17:22:28 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [22-Jul-2024 17:22:32 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [22-Jul-2024 17:22:40 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [22-Jul-2024 17:22:44 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [22-Jul-2024 17:22:48 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [22-Jul-2024 17:22:52 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [22-Jul-2024 17:22:56 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [23-Jul-2024 04:25:33 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [23-Jul-2024 07:57:49 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [23-Jul-2024 08:02:28 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [23-Jul-2024 12:47:18 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [23-Jul-2024 15:25:31 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [23-Jul-2024 18:08:37 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [24-Jul-2024 04:53:08 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [24-Jul-2024 09:20:47 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [25-Jul-2024 21:48:37 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [25-Jul-2024 21:58:48 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [25-Jul-2024 22:04:10 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [26-Jul-2024 00:47:07 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [26-Jul-2024 02:20:31 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [26-Jul-2024 06:50:02 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [26-Jul-2024 18:51:16 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [27-Jul-2024 06:47:31 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [28-Jul-2024 19:05:08 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [28-Jul-2024 21:38:57 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [28-Jul-2024 22:36:56 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [29-Jul-2024 01:30:13 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [29-Jul-2024 08:57:50 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [30-Jul-2024 04:29:27 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [31-Jul-2024 19:58:52 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [31-Jul-2024 21:12:39 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [31-Jul-2024 22:08:47 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [31-Jul-2024 22:37:04 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [01-Aug-2024 19:09:27 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [01-Aug-2024 19:34:29 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [01-Aug-2024 19:49:23 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [01-Aug-2024 21:54:16 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [02-Aug-2024 01:33:15 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [02-Aug-2024 22:26:12 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [02-Aug-2024 23:02:01 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [02-Aug-2024 23:45:53 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [03-Aug-2024 09:16:53 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [03-Aug-2024 15:52:06 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [03-Aug-2024 21:36:34 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [05-Aug-2024 04:24:02 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [05-Aug-2024 11:53:02 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [07-Aug-2024 04:49:53 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [07-Aug-2024 07:24:02 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [07-Aug-2024 08:21:41 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [08-Aug-2024 01:34:43 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [08-Aug-2024 07:19:50 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [08-Aug-2024 16:38:04 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [09-Aug-2024 12:40:35 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [09-Aug-2024 14:57:31 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [12-Aug-2024 17:02:08 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [14-Aug-2024 08:27:37 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [14-Aug-2024 15:57:36 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [14-Aug-2024 16:16:02 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [15-Aug-2024 22:59:34 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [17-Aug-2024 23:16:15 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [18-Aug-2024 11:40:49 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [20-Aug-2024 17:21:35 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [20-Aug-2024 17:33:02 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [21-Aug-2024 06:56:57 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [21-Aug-2024 11:01:17 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [21-Aug-2024 17:31:13 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [21-Aug-2024 17:40:26 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [22-Aug-2024 06:57:19 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [23-Aug-2024 03:09:59 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [23-Aug-2024 06:42:51 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [24-Aug-2024 11:52:44 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [24-Aug-2024 15:18:48 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [27-Aug-2024 22:01:52 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [29-Aug-2024 13:36:35 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [29-Aug-2024 17:07:46 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [30-Aug-2024 06:40:09 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [30-Aug-2024 09:22:57 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [01-Sep-2024 07:57:39 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [01-Sep-2024 20:57:25 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [01-Sep-2024 20:57:29 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [01-Sep-2024 20:57:37 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [01-Sep-2024 20:57:45 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [01-Sep-2024 20:57:49 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [01-Sep-2024 20:57:53 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [01-Sep-2024 20:58:01 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [01-Sep-2024 20:58:05 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [01-Sep-2024 20:58:09 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [01-Sep-2024 20:58:13 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [01-Sep-2024 20:58:17 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [03-Sep-2024 15:54:08 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [03-Sep-2024 21:57:33 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [03-Sep-2024 23:23:08 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [04-Sep-2024 00:26:56 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [04-Sep-2024 11:03:51 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [07-Sep-2024 10:36:45 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [07-Sep-2024 10:36:50 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [07-Sep-2024 10:36:57 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [07-Sep-2024 10:37:06 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [07-Sep-2024 10:37:10 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [07-Sep-2024 10:37:13 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [07-Sep-2024 10:37:21 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [07-Sep-2024 10:37:25 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [07-Sep-2024 10:37:29 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [07-Sep-2024 10:37:34 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [07-Sep-2024 10:37:37 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [07-Sep-2024 10:38:17 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [07-Sep-2024 10:38:21 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [07-Sep-2024 10:38:29 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [07-Sep-2024 10:38:37 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [07-Sep-2024 10:38:41 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [07-Sep-2024 10:38:46 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [07-Sep-2024 10:38:53 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [07-Sep-2024 10:38:57 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [07-Sep-2024 10:39:01 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [07-Sep-2024 10:39:05 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [07-Sep-2024 10:39:10 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [08-Sep-2024 02:23:32 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [09-Sep-2024 07:44:20 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [09-Sep-2024 14:50:23 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [11-Sep-2024 20:56:00 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [11-Sep-2024 20:56:04 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [11-Sep-2024 20:56:13 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [11-Sep-2024 20:56:20 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [11-Sep-2024 20:56:24 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [11-Sep-2024 20:56:29 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [11-Sep-2024 20:56:37 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [11-Sep-2024 20:56:40 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [11-Sep-2024 20:56:44 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [11-Sep-2024 20:56:48 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [11-Sep-2024 20:56:52 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [15-Sep-2024 01:31:01 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [19-Sep-2024 16:48:22 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [20-Sep-2024 00:19:35 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [20-Sep-2024 10:59:39 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [20-Sep-2024 22:10:21 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [22-Sep-2024 05:10:06 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [24-Sep-2024 20:21:04 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [24-Sep-2024 20:44:38 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [25-Sep-2024 00:11:21 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [25-Sep-2024 01:43:07 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [25-Sep-2024 02:49:17 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [25-Sep-2024 03:20:05 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [25-Sep-2024 06:20:18 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [25-Sep-2024 06:39:54 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [25-Sep-2024 10:17:20 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [25-Sep-2024 13:53:06 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [25-Sep-2024 20:59:32 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [26-Sep-2024 05:26:17 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [26-Sep-2024 22:07:02 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [27-Sep-2024 13:18:24 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [27-Sep-2024 13:23:15 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [01-Oct-2024 07:09:31 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [02-Oct-2024 05:57:11 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [02-Oct-2024 06:31:56 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [02-Oct-2024 11:42:25 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [03-Oct-2024 11:59:24 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [05-Oct-2024 08:43:34 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [05-Oct-2024 09:38:19 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [05-Oct-2024 19:12:28 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [05-Oct-2024 20:15:02 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [05-Oct-2024 23:17:50 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [06-Oct-2024 12:05:52 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [06-Oct-2024 22:23:48 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [07-Oct-2024 07:43:56 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [07-Oct-2024 18:02:39 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [07-Oct-2024 18:10:33 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [08-Oct-2024 10:07:22 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [09-Oct-2024 03:45:00 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [09-Oct-2024 18:49:33 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [12-Oct-2024 01:29:32 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [12-Oct-2024 01:29:40 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [12-Oct-2024 10:54:51 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [12-Oct-2024 17:21:14 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [14-Oct-2024 12:25:46 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [16-Oct-2024 01:35:12 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [17-Oct-2024 13:42:42 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [17-Oct-2024 15:04:46 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [18-Oct-2024 12:23:36 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [18-Oct-2024 12:25:04 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [18-Oct-2024 12:25:31 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [18-Oct-2024 12:25:52 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [18-Oct-2024 12:28:02 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [18-Oct-2024 12:29:27 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [18-Oct-2024 12:31:23 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [18-Oct-2024 12:31:57 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [19-Oct-2024 11:05:06 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [23-Oct-2024 11:18:57 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [23-Oct-2024 16:04:24 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [28-Oct-2024 00:02:02 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [29-Oct-2024 03:18:03 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [31-Oct-2024 12:01:41 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [31-Oct-2024 12:01:45 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [31-Oct-2024 12:01:54 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [31-Oct-2024 12:02:02 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [31-Oct-2024 12:02:06 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [31-Oct-2024 12:02:09 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [31-Oct-2024 12:02:18 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [31-Oct-2024 12:02:22 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [31-Oct-2024 12:02:26 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [31-Oct-2024 12:02:29 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [31-Oct-2024 12:02:34 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [03-Nov-2024 15:28:29 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [04-Nov-2024 02:12:34 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [04-Nov-2024 04:12:54 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [04-Nov-2024 07:48:20 America/Fortaleza] PHP Fatal error: Trait 'League\Event\GeneratorTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Generator.php on line 7 [04-Nov-2024 08:13:27 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [04-Nov-2024 09:05:12 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [04-Nov-2024 09:34:27 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Event.php on line 5 [04-Nov-2024 09:43:05 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [04-Nov-2024 10:44:51 America/Fortaleza] PHP Fatal error: Trait 'League\Event\EmitterAwareTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterTrait.php on line 7 [04-Nov-2024 13:24:24 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [04-Nov-2024 16:03:14 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [04-Nov-2024 17:28:14 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [04-Nov-2024 20:20:05 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EventInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractEvent.php on line 5 [06-Nov-2024 21:24:01 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [06-Nov-2024 22:40:40 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 [09-Nov-2024 23:54:35 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/EmitterInterface.php on line 5 [10-Nov-2024 19:00:27 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/CallbackListener.php on line 5 [10-Nov-2024 21:56:28 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/OneTimeListener.php on line 5 [11-Nov-2024 00:38:55 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/AbstractListener.php on line 5 [11-Nov-2024 02:04:48 America/Fortaleza] PHP Fatal error: Interface 'League\Event\ListenerAcceptorInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/ListenerAcceptor.php on line 5 [11-Nov-2024 06:19:05 America/Fortaleza] PHP Fatal error: Interface 'League\Event\EmitterInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/Emitter.php on line 7 [11-Nov-2024 11:02:24 America/Fortaleza] PHP Fatal error: Class 'League\Event\Emitter' not found in /home/mgatv524/public_html/edurocha/vendor/league/event/src/BufferedEmitter.php on line 5 event/src/Emitter.php 0000644 00000014015 14716425166 0010613 0 ustar 00 ensureListener($listener); $this->listeners[$event][$priority][] = $listener; $this->clearSortedListeners($event); return $this; } /** * @inheritdoc */ public function addOneTimeListener($event, $listener, $priority = self::P_NORMAL) { $listener = $this->ensureListener($listener); $listener = new OneTimeListener($listener); return $this->addListener($event, $listener, $priority); } /** * @inheritdoc */ public function useListenerProvider(ListenerProviderInterface $provider) { $acceptor = new ListenerAcceptor($this); $provider->provideListeners($acceptor); return $this; } /** * @inheritdoc */ public function removeListener($event, $listener) { $this->clearSortedListeners($event); $listeners = $this->hasListeners($event) ? $this->listeners[$event] : []; $filter = function ($registered) use ($listener) { return ! $registered->isListener($listener); }; foreach ($listeners as $priority => $collection) { $listeners[$priority] = array_filter($collection, $filter); } $this->listeners[$event] = $listeners; return $this; } /** * @inheritdoc */ public function removeAllListeners($event) { $this->clearSortedListeners($event); if ($this->hasListeners($event)) { unset($this->listeners[$event]); } return $this; } /** * Ensure the input is a listener. * * @param ListenerInterface|callable $listener * * @throws InvalidArgumentException * * @return ListenerInterface */ protected function ensureListener($listener) { if ($listener instanceof ListenerInterface) { return $listener; } if (is_callable($listener)) { return CallbackListener::fromCallable($listener); } throw new InvalidArgumentException('Listeners should be ListenerInterface, Closure or callable. Received type: '.gettype($listener)); } /** * @inheritdoc */ public function hasListeners($event) { if (! isset($this->listeners[$event]) || count($this->listeners[$event]) === 0) { return false; } return true; } /** * @inheritdoc */ public function getListeners($event) { if (array_key_exists($event, $this->sortedListeners)) { return $this->sortedListeners[$event]; } return $this->sortedListeners[$event] = $this->getSortedListeners($event); } /** * Get the listeners sorted by priority for a given event. * * @param string $event * * @return ListenerInterface[] */ protected function getSortedListeners($event) { if (! $this->hasListeners($event)) { return []; } $listeners = $this->listeners[$event]; krsort($listeners); return call_user_func_array('array_merge', $listeners); } /** * @inheritdoc */ public function emit($event) { list($name, $event) = $this->prepareEvent($event); $arguments = [$event] + func_get_args(); $this->invokeListeners($name, $event, $arguments); $this->invokeListeners('*', $event, $arguments); return $event; } /** * @inheritdoc */ public function emitBatch(array $events) { $results = []; foreach ($events as $event) { $results[] = $this->emit($event); } return $results; } /** * @inheritdoc */ public function emitGeneratedEvents(GeneratorInterface $generator) { $events = $generator->releaseEvents(); return $this->emitBatch($events); } /** * Invoke the listeners for an event. * * @param string $name * @param EventInterface $event * @param array $arguments * * @return void */ protected function invokeListeners($name, EventInterface $event, array $arguments) { $listeners = $this->getListeners($name); foreach ($listeners as $listener) { if ($event->isPropagationStopped()) { break; } call_user_func_array([$listener, 'handle'], $arguments); } } /** * Prepare an event for emitting. * * @param string|EventInterface $event * * @return array */ protected function prepareEvent($event) { $event = $this->ensureEvent($event); $name = $event->getName(); $event->setEmitter($this); return [$name, $event]; } /** * Ensure event input is of type EventInterface or convert it. * * @param string|EventInterface $event * * @throws InvalidArgumentException * * @return EventInterface */ protected function ensureEvent($event) { if (is_string($event)) { return Event::named($event); } if (! $event instanceof EventInterface) { throw new InvalidArgumentException('Events should be provides as Event instances or string, received type: '.gettype($event)); } return $event; } /** * Clear the sorted listeners for an event * * @param $event */ protected function clearSortedListeners($event) { unset($this->sortedListeners[$event]); } } event/src/Event.php 0000644 00000001167 14716425166 0010267 0 ustar 00 name = $name; } /** * @inheritdoc */ public function getName() { return $this->name; } /** * Create a new event instance. * * @param string $name * * @return static */ public static function named($name) { return new static($name); } } event/src/EventInterface.php 0000644 00000001276 14716425166 0012111 0 ustar 00 emitter = $emitter; return $this; } /** * @inheritdoc */ public function getEmitter() { return $this->emitter; } /** * @inheritdoc */ public function stopPropagation() { $this->propagationStopped = true; return $this; } /** * @inheritdoc */ public function isPropagationStopped() { return $this->propagationStopped; } /** * @inheritdoc */ public function getName() { return get_class($this); } } event/src/OneTimeListener.php 0000644 00000002227 14716425166 0012252 0 ustar 00 listener = $listener; } /** * Get the wrapped listener. * * @return ListenerInterface */ public function getWrappedListener() { return $this->listener; } /** * @inheritdoc */ public function handle(EventInterface $event) { $name = $event->getName(); $emitter = $event->getEmitter(); $emitter->removeListener($name, $this->listener); return call_user_func_array([$this->listener, 'handle'], func_get_args()); } /** * @inheritdoc */ public function isListener($listener) { if ($listener instanceof OneTimeListener) { $listener = $listener->getWrappedListener(); } return $this->listener->isListener($listener); } } event/src/Generator.php 0000644 00000000215 14716425166 0011125 0 ustar 00 emitter = $emitter; } /** * @inheritdoc */ public function addListener($event, $listener, $priority = self::P_NORMAL) { $this->emitter->addListener($event, $listener, $priority); return $this; } /** * @inheritdoc */ public function addOneTimeListener($event, $listener, $priority = self::P_NORMAL) { $this->emitter->addOneTimeListener($event, $listener, $priority); return $this; } } event/src/EmitterTrait.php 0000644 00000005577 14716425166 0011634 0 ustar 00 getEmitter()->addListener($event, $listener, $priority); return $this; } /** * Add a one time listener for an event. * * The first parameter should be the event name, and the second should be * the event listener. It may implement the League\Event\ListenerInterface * or simply be "callable". * * @param string $event * @param ListenerInterface|callable $listener * @param int $priority * * @return $this */ public function addOneTimeListener($event, $listener, $priority = ListenerAcceptorInterface::P_NORMAL) { $this->getEmitter()->addOneTimeListener($event, $listener, $priority); return $this; } /** * Remove a specific listener for an event. * * The first parameter should be the event name, and the second should be * the event listener. It may implement the League\Event\ListenerInterface * or simply be "callable". * * @param string $event * @param ListenerInterface|callable $listener * * @return $this */ public function removeListener($event, $listener) { $this->getEmitter()->removeListener($event, $listener); return $this; } /** * Remove all listeners for an event. * * The first parameter should be the event name. All event listeners will * be removed. * * @param string $event * * @return $this */ public function removeAllListeners($event) { $this->getEmitter()->removeAllListeners($event); return $this; } /** * Add listeners from a provider. * * @param ListenerProviderInterface $provider * * @return $this */ public function useListenerProvider(ListenerProviderInterface $provider) { $this->getEmitter()->useListenerProvider($provider); return $this; } /** * Emit an event. * * @param string|EventInterface $event * * @return EventInterface */ public function emit($event) { $emitter = $this->getEmitter(); $arguments = [$event] + func_get_args(); return call_user_func_array([$emitter, 'emit'], $arguments); } } oauth2-server/.scrutinizer.yml 0000644 00000001655 14716425166 0012457 0 ustar 00 filter: excluded_paths: - tests/* - vendor/* - examples/* checks: php: code_rating: true remove_extra_empty_lines: true remove_php_closing_tag: true remove_trailing_whitespace: true fix_use_statements: remove_unused: true preserve_multiple: false preserve_blanklines: true order_alphabetically: true fix_php_opening_tag: true fix_linefeed: true fix_line_ending: true fix_identation_4spaces: true fix_doc_comments: true tools: external_code_coverage: timeout: 1800 php_code_coverage: false php_code_sniffer: config: standard: PSR2 filter: paths: ['src'] php_loc: enabled: true excluded_dirs: [vendor, tests, examples] php_cpd: enabled: true excluded_dirs: [vendor, tests, examples] oauth2-server/composer.json 0000644 00000002403 14716425166 0012007 0 ustar 00 { "name": "league/oauth2-server", "description": "A lightweight and powerful OAuth 2.0 authorization and resource server library with support for all the core specification grants. This library will allow you to secure your API with OAuth and allow your applications users to approve apps that want to access their data from your API.", "homepage": "http://oauth2.thephpleague.com/", "license": "MIT", "require": { "php": ">=5.4.0", "symfony/http-foundation": "~2.4|~3.0", "league/event": "~2.1" }, "require-dev": { "phpunit/phpunit": "4.3.*", "mockery/mockery": "0.9.*" }, "repositories": [ { "type": "git", "url": "https://github.com/thephpleague/oauth2-server.git" } ], "keywords": [ "oauth", "oauth2", "oauth 2", "oauth 2.0", "server", "auth", "authorization", "authorisation", "authentication", "resource", "api", "auth", "protect", "secure" ], "authors": [ { "name": "Alex Bilbie", "email": "hello@alexbilbie.com", "homepage": "http://www.alexbilbie.com", "role": "Developer" } ], "replace": { "lncd/oauth2": "*", "league/oauth2server": "*" }, "autoload": { "psr-4": { "League\\OAuth2\\Server\\": "src/" } }, "autoload-dev": { "psr-4": { "LeagueTests\\": "tests/unit/" } } } oauth2-server/.gitattributes 0000644 00000000163 14716425166 0012161 0 ustar 00 tests/ export-ignore phpunit.xml export-ignore build.xml export-ignore test export-ignore .travis.yml export-ignore oauth2-server/src/Storage/StorageInterface.php 0000644 00000001107 14716425166 0015416 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Storage; use League\OAuth2\Server\AbstractServer; /** * Storage interface */ interface StorageInterface { /** * Set the server * * @param \League\OAuth2\Server\AbstractServer $server */ public function setServer(AbstractServer $server); } oauth2-server/src/Storage/AuthCodeInterface.php 0000644 00000003615 14716425166 0015514 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Storage; use League\OAuth2\Server\Entity\AuthCodeEntity; use League\OAuth2\Server\Entity\ScopeEntity; /** * Auth code storage interface */ interface AuthCodeInterface extends StorageInterface { /** * Get the auth code * * @param string $code * * @return \League\OAuth2\Server\Entity\AuthCodeEntity | null */ public function get($code); /** * Create an auth code. * * @param string $token The token ID * @param integer $expireTime Token expire time * @param integer $sessionId Session identifier * @param string $redirectUri Client redirect uri * * @return void */ public function create($token, $expireTime, $sessionId, $redirectUri); /** * Get the scopes for an access token * * @param \League\OAuth2\Server\Entity\AuthCodeEntity $token The auth code * * @return \League\OAuth2\Server\Entity\ScopeEntity[] Array of \League\OAuth2\Server\Entity\ScopeEntity */ public function getScopes(AuthCodeEntity $token); /** * Associate a scope with an acess token * * @param \League\OAuth2\Server\Entity\AuthCodeEntity $token The auth code * @param \League\OAuth2\Server\Entity\ScopeEntity $scope The scope * * @return void */ public function associateScope(AuthCodeEntity $token, ScopeEntity $scope); /** * Delete an access token * * @param \League\OAuth2\Server\Entity\AuthCodeEntity $token The access token to delete * * @return void */ public function delete(AuthCodeEntity $token); } oauth2-server/src/Storage/AbstractStorage.php 0000644 00000001761 14716425166 0015267 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Storage; use League\OAuth2\Server\AbstractServer; /** * Abstract storage class */ abstract class AbstractStorage implements StorageInterface { /** * Server * * @var \League\OAuth2\Server\AbstractServer $server */ protected $server; /** * Set the server * * @param \League\OAuth2\Server\AbstractServer $server * * @return self */ public function setServer(AbstractServer $server) { $this->server = $server; return $this; } /** * Return the server * * @return \League\OAuth2\Server\AbstractServer */ protected function getServer() { return $this->server; } } oauth2-server/src/Storage/error_log; 0000644 00000240401 14716425166 0013472 0 ustar 00 [14-Sep-2023 08:20:53 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [14-Sep-2023 23:54:43 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [17-Sep-2023 19:42:59 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [18-Sep-2023 15:24:04 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [28-Sep-2023 11:17:48 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [28-Sep-2023 17:25:14 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [01-Oct-2023 14:54:35 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [01-Oct-2023 14:54:36 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [01-Oct-2023 14:54:39 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [01-Oct-2023 14:54:43 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [01-Oct-2023 14:54:44 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [01-Oct-2023 14:54:45 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [01-Oct-2023 14:54:48 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [01-Oct-2023 14:54:50 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [01-Oct-2023 17:49:42 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [01-Oct-2023 17:49:45 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [01-Oct-2023 17:49:46 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [01-Oct-2023 17:49:47 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [01-Oct-2023 17:49:48 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [01-Oct-2023 17:49:49 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [01-Oct-2023 17:49:50 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [01-Oct-2023 17:49:54 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [16-Nov-2023 16:26:09 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [17-Nov-2023 06:42:48 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [17-Nov-2023 08:28:29 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [20-Nov-2023 10:31:03 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [22-Nov-2023 03:29:17 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [22-Nov-2023 03:29:19 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [22-Nov-2023 03:29:23 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [22-Nov-2023 03:29:25 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [22-Nov-2023 03:29:27 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [22-Nov-2023 03:29:29 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [22-Nov-2023 03:29:34 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [22-Nov-2023 03:29:36 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [25-Nov-2023 04:13:07 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [25-Nov-2023 04:13:14 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [25-Nov-2023 04:13:15 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [25-Nov-2023 04:13:21 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [25-Nov-2023 04:13:28 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [25-Nov-2023 04:13:30 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [25-Nov-2023 04:13:33 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [25-Nov-2023 04:13:34 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [25-Nov-2023 08:34:38 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [25-Nov-2023 08:34:40 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [25-Nov-2023 08:34:41 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [25-Nov-2023 08:34:44 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [25-Nov-2023 08:34:47 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [25-Nov-2023 08:34:48 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [25-Nov-2023 08:34:50 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [25-Nov-2023 08:34:52 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [27-Nov-2023 13:41:14 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [27-Nov-2023 13:41:18 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [27-Nov-2023 13:41:20 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [27-Nov-2023 13:41:23 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [27-Nov-2023 13:41:27 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [27-Nov-2023 13:41:33 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [27-Nov-2023 13:41:36 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [27-Nov-2023 13:41:38 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [29-Nov-2023 01:27:59 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [04-Dec-2023 01:10:50 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [06-Dec-2023 14:21:30 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [29-Dec-2023 20:42:47 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [07-Jan-2024 18:59:30 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [14-Jan-2024 11:08:57 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [15-Jan-2024 13:07:03 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [19-Jan-2024 19:49:54 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [25-Jan-2024 09:05:47 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [27-Jan-2024 05:45:45 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [29-Jan-2024 17:15:17 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [20-Feb-2024 06:52:56 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [18-Mar-2024 19:42:10 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [29-Mar-2024 19:40:22 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [31-Mar-2024 22:33:28 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [04-Apr-2024 01:27:07 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [04-Apr-2024 06:57:24 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [04-Apr-2024 07:23:04 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [04-Apr-2024 07:25:14 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [04-Apr-2024 14:47:45 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [04-Apr-2024 18:23:55 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [04-Apr-2024 18:39:48 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [04-Apr-2024 21:11:28 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [05-Apr-2024 20:04:27 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [07-Apr-2024 14:25:08 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [07-Apr-2024 14:35:49 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [07-Apr-2024 14:46:14 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [07-Apr-2024 16:24:00 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [07-Apr-2024 20:19:14 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [08-Apr-2024 03:28:43 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [08-Apr-2024 11:36:21 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [10-Apr-2024 12:14:23 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [10-Apr-2024 12:45:45 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [13-Apr-2024 15:56:50 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [19-Apr-2024 16:26:40 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [29-Apr-2024 05:05:14 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [04-May-2024 23:26:36 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [04-May-2024 23:33:20 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [04-May-2024 23:33:24 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [04-May-2024 23:33:27 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [04-May-2024 23:37:55 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [04-May-2024 23:38:01 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [04-May-2024 23:58:39 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [04-May-2024 23:58:44 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [05-May-2024 09:22:24 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [05-May-2024 09:29:08 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [05-May-2024 09:29:12 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [05-May-2024 09:29:18 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [05-May-2024 09:33:43 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [05-May-2024 09:33:48 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [05-May-2024 09:54:15 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [05-May-2024 09:54:20 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [05-May-2024 12:59:55 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [05-May-2024 19:22:24 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [05-May-2024 19:28:05 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [05-May-2024 19:28:08 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [05-May-2024 19:28:12 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [05-May-2024 19:32:24 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [05-May-2024 19:32:28 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [05-May-2024 19:52:12 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [05-May-2024 19:52:12 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [14-May-2024 19:13:50 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [14-May-2024 19:16:21 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [14-May-2024 19:16:24 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [14-May-2024 19:16:30 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [14-May-2024 19:17:28 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [14-May-2024 19:17:32 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [14-May-2024 19:21:36 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [14-May-2024 19:21:40 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [17-May-2024 04:16:55 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [17-May-2024 23:46:45 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [17-May-2024 23:58:08 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [18-May-2024 00:22:55 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [18-May-2024 11:17:26 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [18-May-2024 21:46:26 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [19-May-2024 00:21:52 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [19-May-2024 06:55:38 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [20-May-2024 18:36:21 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [21-May-2024 00:02:15 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [22-May-2024 09:52:17 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [22-May-2024 10:15:31 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [23-May-2024 13:49:53 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [23-May-2024 15:27:22 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [23-May-2024 17:52:40 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [23-May-2024 23:39:41 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [24-May-2024 06:25:47 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [24-May-2024 21:09:30 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [29-May-2024 21:07:19 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [01-Jun-2024 23:52:50 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [05-Jun-2024 08:51:33 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [19-Jun-2024 00:25:21 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [19-Jun-2024 00:25:53 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [19-Jun-2024 00:25:58 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [19-Jun-2024 00:26:01 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [19-Jun-2024 00:26:09 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [19-Jun-2024 00:26:13 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [19-Jun-2024 00:27:14 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [19-Jun-2024 00:27:17 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [19-Jun-2024 07:27:21 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [19-Jun-2024 07:27:53 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [19-Jun-2024 07:27:57 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [19-Jun-2024 07:28:01 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [19-Jun-2024 07:28:09 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [19-Jun-2024 07:28:13 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [19-Jun-2024 07:29:13 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [19-Jun-2024 07:29:17 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [19-Jun-2024 22:12:29 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [19-Jun-2024 22:13:02 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [19-Jun-2024 22:13:05 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [19-Jun-2024 22:13:09 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [19-Jun-2024 22:13:17 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [19-Jun-2024 22:13:21 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [19-Jun-2024 22:14:21 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [19-Jun-2024 22:14:25 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [21-Jun-2024 12:23:27 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [21-Jun-2024 20:17:38 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [22-Jun-2024 06:17:59 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [27-Jun-2024 15:15:46 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [27-Jun-2024 21:15:39 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [28-Jun-2024 03:29:05 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [28-Jun-2024 14:07:02 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [29-Jun-2024 04:47:07 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [02-Jul-2024 11:43:13 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [02-Jul-2024 18:52:37 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [02-Jul-2024 22:11:45 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [03-Jul-2024 00:15:43 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [03-Jul-2024 05:31:29 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [03-Jul-2024 06:49:51 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [03-Jul-2024 12:19:15 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [03-Jul-2024 22:50:52 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [08-Jul-2024 18:47:18 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [09-Jul-2024 10:11:45 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [14-Jul-2024 12:52:07 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [14-Jul-2024 21:53:55 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [15-Jul-2024 09:25:48 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [15-Jul-2024 11:07:06 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [15-Jul-2024 12:07:16 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [17-Jul-2024 18:52:38 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [19-Jul-2024 00:50:49 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [20-Jul-2024 04:58:19 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [21-Jul-2024 07:24:51 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [21-Jul-2024 10:45:31 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [22-Jul-2024 06:14:02 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [22-Jul-2024 17:59:40 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [22-Jul-2024 18:05:16 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [22-Jul-2024 18:05:20 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [22-Jul-2024 18:05:24 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [22-Jul-2024 18:09:08 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [22-Jul-2024 18:09:12 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [22-Jul-2024 18:28:04 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [22-Jul-2024 18:28:08 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [24-Jul-2024 13:43:30 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [24-Jul-2024 22:24:59 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [26-Jul-2024 07:22:53 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [27-Jul-2024 09:22:21 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [28-Jul-2024 11:39:32 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [30-Jul-2024 09:13:31 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [30-Jul-2024 15:34:05 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [31-Jul-2024 07:59:33 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [01-Aug-2024 20:40:28 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [02-Aug-2024 16:09:31 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [03-Aug-2024 10:47:19 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [03-Aug-2024 11:16:35 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [03-Aug-2024 14:56:29 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [03-Aug-2024 16:00:27 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [04-Aug-2024 15:51:43 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [05-Aug-2024 23:40:07 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [08-Aug-2024 23:47:50 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [09-Aug-2024 11:34:58 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [09-Aug-2024 13:13:16 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [09-Aug-2024 13:14:04 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [09-Aug-2024 14:53:42 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [09-Aug-2024 21:56:46 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [09-Aug-2024 23:46:25 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [10-Aug-2024 03:10:00 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [10-Aug-2024 18:21:19 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [13-Aug-2024 23:30:39 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [15-Aug-2024 06:25:57 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [16-Aug-2024 18:54:08 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [20-Aug-2024 13:06:10 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [30-Aug-2024 08:41:06 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [31-Aug-2024 03:52:06 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [31-Aug-2024 16:44:10 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [01-Sep-2024 21:37:25 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [01-Sep-2024 21:44:09 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [01-Sep-2024 21:44:13 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [01-Sep-2024 21:44:17 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [01-Sep-2024 21:48:45 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [01-Sep-2024 21:48:49 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [01-Sep-2024 22:09:29 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [01-Sep-2024 22:09:33 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [04-Sep-2024 00:55:17 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [04-Sep-2024 11:17:58 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [05-Sep-2024 04:43:11 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [07-Sep-2024 14:04:17 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [07-Sep-2024 14:04:38 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [07-Sep-2024 16:53:09 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [07-Sep-2024 16:53:14 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [07-Sep-2024 16:53:17 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [07-Sep-2024 16:53:22 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [07-Sep-2024 16:53:25 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [07-Sep-2024 16:53:29 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [07-Sep-2024 16:58:37 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [07-Sep-2024 16:58:42 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [07-Sep-2024 16:58:50 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [07-Sep-2024 16:58:54 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [07-Sep-2024 17:01:21 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [07-Sep-2024 17:01:26 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [07-Sep-2024 17:01:33 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [07-Sep-2024 17:01:37 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [08-Sep-2024 19:54:56 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [08-Sep-2024 20:53:57 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [08-Sep-2024 23:05:59 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [09-Sep-2024 14:19:58 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [11-Sep-2024 21:32:04 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [11-Sep-2024 21:37:16 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [11-Sep-2024 21:37:20 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [11-Sep-2024 21:37:24 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [11-Sep-2024 21:41:00 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [11-Sep-2024 21:41:04 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [11-Sep-2024 21:59:00 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [11-Sep-2024 21:59:04 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [14-Sep-2024 04:12:17 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [14-Sep-2024 05:12:34 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [15-Sep-2024 16:49:57 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [15-Sep-2024 20:15:47 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [15-Sep-2024 23:00:31 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [16-Sep-2024 02:31:07 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [16-Sep-2024 03:58:51 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [16-Sep-2024 09:11:54 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [16-Sep-2024 16:26:39 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [16-Sep-2024 20:38:46 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [17-Sep-2024 19:58:12 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [17-Sep-2024 20:43:01 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [18-Sep-2024 13:03:49 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [21-Sep-2024 12:19:08 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [24-Sep-2024 22:38:34 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [26-Sep-2024 04:46:30 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [28-Sep-2024 17:36:48 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [02-Oct-2024 08:06:59 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [03-Oct-2024 13:17:01 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [03-Oct-2024 14:48:19 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [07-Oct-2024 20:56:21 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [10-Oct-2024 04:36:27 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [12-Oct-2024 01:53:42 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [12-Oct-2024 02:25:31 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [12-Oct-2024 04:18:34 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [12-Oct-2024 06:10:18 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [13-Oct-2024 02:42:41 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [13-Oct-2024 20:24:06 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [17-Oct-2024 09:49:15 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [18-Oct-2024 14:17:26 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [18-Oct-2024 14:17:26 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [18-Oct-2024 14:18:53 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [18-Oct-2024 14:21:55 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [18-Oct-2024 14:27:53 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [18-Oct-2024 14:28:17 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [18-Oct-2024 14:29:03 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [18-Oct-2024 15:18:05 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [18-Oct-2024 21:59:17 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [19-Oct-2024 01:01:31 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [19-Oct-2024 04:14:45 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [22-Oct-2024 17:21:18 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [23-Oct-2024 09:58:36 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [23-Oct-2024 14:52:39 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [24-Oct-2024 02:35:36 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [24-Oct-2024 13:31:07 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [29-Oct-2024 04:42:23 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [31-Oct-2024 12:27:06 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [31-Oct-2024 12:32:17 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [31-Oct-2024 12:32:21 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [31-Oct-2024 12:32:26 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [31-Oct-2024 12:35:13 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [31-Oct-2024 12:35:17 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [31-Oct-2024 12:47:31 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [31-Oct-2024 12:47:35 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [09-Nov-2024 02:44:51 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/SessionInterface.php on line 22 [09-Nov-2024 02:44:55 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [09-Nov-2024 02:44:59 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ClientInterface.php on line 19 [09-Nov-2024 02:45:03 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AbstractStorage.php on line 19 [09-Nov-2024 02:45:07 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/MacTokenInterface.php on line 18 [09-Nov-2024 02:45:11 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AuthCodeInterface.php on line 20 [09-Nov-2024 02:45:15 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 [09-Nov-2024 02:45:19 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/AccessTokenInterface.php on line 20 [11-Nov-2024 14:27:20 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/ScopeInterface.php on line 17 [11-Nov-2024 15:44:03 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Storage\StorageInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Storage/RefreshTokenInterface.php on line 19 oauth2-server/src/Storage/AccessTokenInterface.php 0000644 00000003713 14716425166 0016221 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Storage; use League\OAuth2\Server\Entity\AccessTokenEntity; use League\OAuth2\Server\Entity\ScopeEntity; /** * Access token interface */ interface AccessTokenInterface extends StorageInterface { /** * Get an instance of Entity\AccessTokenEntity * * @param string $token The access token * * @return \League\OAuth2\Server\Entity\AccessTokenEntity | null */ public function get($token); /** * Get the scopes for an access token * * @param \League\OAuth2\Server\Entity\AccessTokenEntity $token The access token * * @return \League\OAuth2\Server\Entity\ScopeEntity[] Array of \League\OAuth2\Server\Entity\ScopeEntity */ public function getScopes(AccessTokenEntity $token); /** * Creates a new access token * * @param string $token The access token * @param integer $expireTime The expire time expressed as a unix timestamp * @param string|integer $sessionId The session ID * * @return void */ public function create($token, $expireTime, $sessionId); /** * Associate a scope with an acess token * * @param \League\OAuth2\Server\Entity\AccessTokenEntity $token The access token * @param \League\OAuth2\Server\Entity\ScopeEntity $scope The scope * * @return void */ public function associateScope(AccessTokenEntity $token, ScopeEntity $scope); /** * Delete an access token * * @param \League\OAuth2\Server\Entity\AccessTokenEntity $token The access token to delete * * @return void */ public function delete(AccessTokenEntity $token); } oauth2-server/src/Storage/MacTokenInterface.php 0000644 00000001410 14716425166 0015510 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Storage; /** * MacTokenInterface */ interface MacTokenInterface extends StorageInterface { /** * Create a MAC key linked to an access token * @param string $macKey * @param string $accessToken * @return void */ public function create($macKey, $accessToken); /** * Get a MAC key by access token * @param string $accessToken * @return string */ public function getByAccessToken($accessToken); } oauth2-server/src/Storage/RefreshTokenInterface.php 0000644 00000002313 14716425166 0016411 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Storage; use League\OAuth2\Server\Entity\RefreshTokenEntity; /** * Refresh token interface */ interface RefreshTokenInterface extends StorageInterface { /** * Return a new instance of \League\OAuth2\Server\Entity\RefreshTokenEntity * * @param string $token * * @return \League\OAuth2\Server\Entity\RefreshTokenEntity | null */ public function get($token); /** * Create a new refresh token_name * * @param string $token * @param integer $expireTime * @param string $accessToken * * @return \League\OAuth2\Server\Entity\RefreshTokenEntity */ public function create($token, $expireTime, $accessToken); /** * Delete the refresh token * * @param \League\OAuth2\Server\Entity\RefreshTokenEntity $token * * @return void */ public function delete(RefreshTokenEntity $token); } oauth2-server/src/Storage/ClientInterface.php 0000644 00000002333 14716425166 0015232 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Storage; use League\OAuth2\Server\Entity\SessionEntity; /** * Client storage interface */ interface ClientInterface extends StorageInterface { /** * Validate a client * * @param string $clientId The client's ID * @param string $clientSecret The client's secret (default = "null") * @param string $redirectUri The client's redirect URI (default = "null") * @param string $grantType The grant type used (default = "null") * * @return \League\OAuth2\Server\Entity\ClientEntity | null */ public function get($clientId, $clientSecret = null, $redirectUri = null, $grantType = null); /** * Get the client associated with a session * * @param \League\OAuth2\Server\Entity\SessionEntity $session The session * * @return \League\OAuth2\Server\Entity\ClientEntity | null */ public function getBySession(SessionEntity $session); } oauth2-server/src/Storage/SessionInterface.php 0000644 00000004307 14716425166 0015442 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Storage; use League\OAuth2\Server\Entity\AccessTokenEntity; use League\OAuth2\Server\Entity\AuthCodeEntity; use League\OAuth2\Server\Entity\ScopeEntity; use League\OAuth2\Server\Entity\SessionEntity; /** * Session storage interface */ interface SessionInterface extends StorageInterface { /** * Get a session from an access token * * @param \League\OAuth2\Server\Entity\AccessTokenEntity $accessToken The access token * * @return \League\OAuth2\Server\Entity\SessionEntity | null */ public function getByAccessToken(AccessTokenEntity $accessToken); /** * Get a session from an auth code * * @param \League\OAuth2\Server\Entity\AuthCodeEntity $authCode The auth code * * @return \League\OAuth2\Server\Entity\SessionEntity | null */ public function getByAuthCode(AuthCodeEntity $authCode); /** * Get a session's scopes * * @param \League\OAuth2\Server\Entity\SessionEntity * * @return \League\OAuth2\Server\Entity\ScopeEntity[] Array of \League\OAuth2\Server\Entity\ScopeEntity */ public function getScopes(SessionEntity $session); /** * Create a new session * * @param string $ownerType Session owner's type (user, client) * @param string $ownerId Session owner's ID * @param string $clientId Client ID * @param string $clientRedirectUri Client redirect URI (default = null) * * @return integer The session's ID */ public function create($ownerType, $ownerId, $clientId, $clientRedirectUri = null); /** * Associate a scope with a session * * @param \League\OAuth2\Server\Entity\SessionEntity $session The session * @param \League\OAuth2\Server\Entity\ScopeEntity $scope The scope * * @return void */ public function associateScope(SessionEntity $session, ScopeEntity $scope); } oauth2-server/src/Storage/ScopeInterface.php 0000644 00000001466 14716425166 0015073 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Storage; /** * Scope interface */ interface ScopeInterface extends StorageInterface { /** * Return information about a scope * * @param string $scope The scope * @param string $grantType The grant type used in the request (default = "null") * @param string $clientId The client sending the request (default = "null") * * @return \League\OAuth2\Server\Entity\ScopeEntity | null */ public function get($scope, $grantType = null, $clientId = null); } oauth2-server/src/Grant/GrantTypeInterface.php 0000644 00000002274 14716425166 0015404 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Grant; use League\OAuth2\Server\AuthorizationServer; /** * Grant type interface */ interface GrantTypeInterface { /** * Return the identifier * * @return string */ public function getIdentifier(); /** * Return the identifier * * @param string $identifier * * @return self */ public function setIdentifier($identifier); /** * Return the response type * * @return string */ public function getResponseType(); /** * Inject the authorization server into the grant * * @param \League\OAuth2\Server\AuthorizationServer $server The authorization server instance * * @return self */ public function setAuthorizationServer(AuthorizationServer $server); /** * Complete the grant flow * * @return array */ public function completeFlow(); } oauth2-server/src/Grant/ClientCredentialsGrant.php 0000644 00000007044 14716425166 0016236 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Grant; use League\OAuth2\Server\Entity\AccessTokenEntity; use League\OAuth2\Server\Entity\ClientEntity; use League\OAuth2\Server\Entity\SessionEntity; use League\OAuth2\Server\Event; use League\OAuth2\Server\Exception; use League\OAuth2\Server\Util\SecureKey; /** * Client credentials grant class */ class ClientCredentialsGrant extends AbstractGrant { /** * Grant identifier * * @var string */ protected $identifier = 'client_credentials'; /** * Response type * * @var string */ protected $responseType = null; /** * AuthServer instance * * @var \League\OAuth2\Server\AuthorizationServer */ protected $server = null; /** * Access token expires in override * * @var int */ protected $accessTokenTTL = null; /** * Complete the client credentials grant * * @return array * * @throws */ public function completeFlow() { // Get the required params $clientId = $this->server->getRequest()->request->get('client_id', $this->server->getRequest()->getUser()); if (is_null($clientId)) { throw new Exception\InvalidRequestException('client_id'); } $clientSecret = $this->server->getRequest()->request->get('client_secret', $this->server->getRequest()->getPassword()); if (is_null($clientSecret)) { throw new Exception\InvalidRequestException('client_secret'); } // Validate client ID and client secret $client = $this->server->getClientStorage()->get( $clientId, $clientSecret, null, $this->getIdentifier() ); if (($client instanceof ClientEntity) === false) { $this->server->getEventEmitter()->emit(new Event\ClientAuthenticationFailedEvent($this->server->getRequest())); throw new Exception\InvalidClientException(); } // Validate any scopes that are in the request $scopeParam = $this->server->getRequest()->request->get('scope', ''); $scopes = $this->validateScopes($scopeParam, $client); // Create a new session $session = new SessionEntity($this->server); $session->setOwner('client', $client->getId()); $session->associateClient($client); // Generate an access token $accessToken = new AccessTokenEntity($this->server); $accessToken->setId(SecureKey::generate()); $accessToken->setExpireTime($this->getAccessTokenTTL() + time()); // Associate scopes with the session and access token foreach ($scopes as $scope) { $session->associateScope($scope); } foreach ($session->getScopes() as $scope) { $accessToken->associateScope($scope); } // Save everything $session->save(); $accessToken->setSession($session); $accessToken->save(); $this->server->getTokenType()->setSession($session); $this->server->getTokenType()->setParam('access_token', $accessToken->getId()); $this->server->getTokenType()->setParam('expires_in', $this->getAccessTokenTTL()); return $this->server->getTokenType()->generateResponse(); } } oauth2-server/src/Grant/RefreshTokenGrant.php 0000644 00000015563 14716425166 0015246 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Grant; use League\OAuth2\Server\Entity\AccessTokenEntity; use League\OAuth2\Server\Entity\ClientEntity; use League\OAuth2\Server\Entity\RefreshTokenEntity; use League\OAuth2\Server\Event; use League\OAuth2\Server\Exception; use League\OAuth2\Server\Util\SecureKey; /** * Refresh token grant */ class RefreshTokenGrant extends AbstractGrant { /** * {@inheritdoc} */ protected $identifier = 'refresh_token'; /** * Refresh token TTL (default = 604800 | 1 week) * * @var integer */ protected $refreshTokenTTL = 604800; /** * Rotate token (default = true) * * @var integer */ protected $refreshTokenRotate = true; /** * Whether to require the client secret when * completing the flow. * * @var boolean */ protected $requireClientSecret = true; /** * Set the TTL of the refresh token * * @param int $refreshTokenTTL * * @return void */ public function setRefreshTokenTTL($refreshTokenTTL) { $this->refreshTokenTTL = $refreshTokenTTL; } /** * Get the TTL of the refresh token * * @return int */ public function getRefreshTokenTTL() { return $this->refreshTokenTTL; } /** * Set the rotation boolean of the refresh token * @param bool $refreshTokenRotate */ public function setRefreshTokenRotation($refreshTokenRotate = true) { $this->refreshTokenRotate = $refreshTokenRotate; } /** * Get rotation boolean of the refresh token * * @return bool */ public function shouldRotateRefreshTokens() { return $this->refreshTokenRotate; } /** * * @param bool $required True to require client secret during access * token request. False if not. Default = true */ public function setRequireClientSecret($required) { $this->requireClientSecret = $required; } /** * True if client secret is required during * access token request. False if it isn't. * * @return bool */ public function shouldRequireClientSecret() { return $this->requireClientSecret; } /** * {@inheritdoc} */ public function completeFlow() { $clientId = $this->server->getRequest()->request->get('client_id', $this->server->getRequest()->getUser()); if (is_null($clientId)) { throw new Exception\InvalidRequestException('client_id'); } $clientSecret = $this->server->getRequest()->request->get('client_secret', $this->server->getRequest()->getPassword()); if ($this->shouldRequireClientSecret() && is_null($clientSecret)) { throw new Exception\InvalidRequestException('client_secret'); } // Validate client ID and client secret $client = $this->server->getClientStorage()->get( $clientId, $clientSecret, null, $this->getIdentifier() ); if (($client instanceof ClientEntity) === false) { $this->server->getEventEmitter()->emit(new Event\ClientAuthenticationFailedEvent($this->server->getRequest())); throw new Exception\InvalidClientException(); } $oldRefreshTokenParam = $this->server->getRequest()->request->get('refresh_token', null); if ($oldRefreshTokenParam === null) { throw new Exception\InvalidRequestException('refresh_token'); } // Validate refresh token $oldRefreshToken = $this->server->getRefreshTokenStorage()->get($oldRefreshTokenParam); if (($oldRefreshToken instanceof RefreshTokenEntity) === false) { throw new Exception\InvalidRefreshException(); } // Ensure the old refresh token hasn't expired if ($oldRefreshToken->isExpired() === true) { throw new Exception\InvalidRefreshException(); } $oldAccessToken = $oldRefreshToken->getAccessToken(); // Get the scopes for the original session $session = $oldAccessToken->getSession(); $scopes = $this->formatScopes($session->getScopes()); // Get and validate any requested scopes $requestedScopesString = $this->server->getRequest()->request->get('scope', ''); $requestedScopes = $this->validateScopes($requestedScopesString, $client); // If no new scopes are requested then give the access token the original session scopes if (count($requestedScopes) === 0) { $newScopes = $scopes; } else { // The OAuth spec says that a refreshed access token can have the original scopes or fewer so ensure // the request doesn't include any new scopes foreach ($requestedScopes as $requestedScope) { if (!isset($scopes[$requestedScope->getId()])) { throw new Exception\InvalidScopeException($requestedScope->getId()); } } $newScopes = $requestedScopes; } // Generate a new access token and assign it the correct sessions $newAccessToken = new AccessTokenEntity($this->server); $newAccessToken->setId(SecureKey::generate()); $newAccessToken->setExpireTime($this->getAccessTokenTTL() + time()); $newAccessToken->setSession($session); foreach ($newScopes as $newScope) { $newAccessToken->associateScope($newScope); } // Expire the old token and save the new one $oldAccessToken->expire(); $newAccessToken->save(); $this->server->getTokenType()->setSession($session); $this->server->getTokenType()->setParam('access_token', $newAccessToken->getId()); $this->server->getTokenType()->setParam('expires_in', $this->getAccessTokenTTL()); if ($this->shouldRotateRefreshTokens()) { // Expire the old refresh token $oldRefreshToken->expire(); // Generate a new refresh token $newRefreshToken = new RefreshTokenEntity($this->server); $newRefreshToken->setId(SecureKey::generate()); $newRefreshToken->setExpireTime($this->getRefreshTokenTTL() + time()); $newRefreshToken->setAccessToken($newAccessToken); $newRefreshToken->save(); $this->server->getTokenType()->setParam('refresh_token', $newRefreshToken->getId()); } else { $this->server->getTokenType()->setParam('refresh_token', $oldRefreshToken->getId()); } return $this->server->getTokenType()->generateResponse(); } } oauth2-server/src/Grant/PasswordGrant.php 0000644 00000013045 14716425166 0014442 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Grant; use League\OAuth2\Server\Entity\AccessTokenEntity; use League\OAuth2\Server\Entity\ClientEntity; use League\OAuth2\Server\Entity\RefreshTokenEntity; use League\OAuth2\Server\Entity\SessionEntity; use League\OAuth2\Server\Event; use League\OAuth2\Server\Exception; use League\OAuth2\Server\Util\SecureKey; /** * Password grant class */ class PasswordGrant extends AbstractGrant { /** * Grant identifier * * @var string */ protected $identifier = 'password'; /** * Response type * * @var string */ protected $responseType; /** * Callback to authenticate a user's name and password * * @var callable */ protected $callback; /** * Access token expires in override * * @var int */ protected $accessTokenTTL; /** * Set the callback to verify a user's username and password * * @param callable $callback The callback function * * @return void */ public function setVerifyCredentialsCallback(callable $callback) { $this->callback = $callback; } /** * Return the callback function * * @return callable * * @throws */ protected function getVerifyCredentialsCallback() { if (is_null($this->callback) || !is_callable($this->callback)) { throw new Exception\ServerErrorException('Null or non-callable callback set on Password grant'); } return $this->callback; } /** * Complete the password grant * * @return array * * @throws */ public function completeFlow() { // Get the required params $clientId = $this->server->getRequest()->request->get('client_id', $this->server->getRequest()->getUser()); if (is_null($clientId)) { throw new Exception\InvalidRequestException('client_id'); } $clientSecret = $this->server->getRequest()->request->get('client_secret', $this->server->getRequest()->getPassword()); if (is_null($clientSecret)) { throw new Exception\InvalidRequestException('client_secret'); } // Validate client ID and client secret $client = $this->server->getClientStorage()->get( $clientId, $clientSecret, null, $this->getIdentifier() ); if (($client instanceof ClientEntity) === false) { $this->server->getEventEmitter()->emit(new Event\ClientAuthenticationFailedEvent($this->server->getRequest())); throw new Exception\InvalidClientException(); } $username = $this->server->getRequest()->request->get('username', null); if (is_null($username)) { throw new Exception\InvalidRequestException('username'); } $password = $this->server->getRequest()->request->get('password', null); if (is_null($password)) { throw new Exception\InvalidRequestException('password'); } // Check if user's username and password are correct $userId = call_user_func($this->getVerifyCredentialsCallback(), $username, $password); if ($userId === false) { $this->server->getEventEmitter()->emit(new Event\UserAuthenticationFailedEvent($this->server->getRequest())); throw new Exception\InvalidCredentialsException(); } // Validate any scopes that are in the request $scopeParam = $this->server->getRequest()->request->get('scope', ''); $scopes = $this->validateScopes($scopeParam, $client); // Create a new session $session = new SessionEntity($this->server); $session->setOwner('user', $userId); $session->associateClient($client); // Generate an access token $accessToken = new AccessTokenEntity($this->server); $accessToken->setId(SecureKey::generate()); $accessToken->setExpireTime($this->getAccessTokenTTL() + time()); // Associate scopes with the session and access token foreach ($scopes as $scope) { $session->associateScope($scope); } foreach ($session->getScopes() as $scope) { $accessToken->associateScope($scope); } $this->server->getTokenType()->setSession($session); $this->server->getTokenType()->setParam('access_token', $accessToken->getId()); $this->server->getTokenType()->setParam('expires_in', $this->getAccessTokenTTL()); // Associate a refresh token if set if ($this->server->hasGrantType('refresh_token')) { $refreshToken = new RefreshTokenEntity($this->server); $refreshToken->setId(SecureKey::generate()); $refreshToken->setExpireTime($this->server->getGrantType('refresh_token')->getRefreshTokenTTL() + time()); $this->server->getTokenType()->setParam('refresh_token', $refreshToken->getId()); } // Save everything $session->save(); $accessToken->setSession($session); $accessToken->save(); if ($this->server->hasGrantType('refresh_token')) { $refreshToken->setAccessToken($accessToken); $refreshToken->save(); } return $this->server->getTokenType()->generateResponse(); } } oauth2-server/src/Grant/AbstractGrant.php 0000644 00000011350 14716425166 0014400 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Grant; use League\OAuth2\Server\AuthorizationServer; use League\OAuth2\Server\Entity\ClientEntity; use League\OAuth2\Server\Entity\ScopeEntity; use League\OAuth2\Server\Exception; /** * Abstract grant class */ abstract class AbstractGrant implements GrantTypeInterface { /** * Grant identifier * * @var string */ protected $identifier = ''; /** * Response type * * @var string */ protected $responseType; /** * Callback to authenticate a user's name and password * * @var callable */ protected $callback; /** * AuthServer instance * * @var \League\OAuth2\Server\AuthorizationServer */ protected $server; /** * Access token expires in override * * @var int */ protected $accessTokenTTL; /** * {@inheritdoc} */ public function getIdentifier() { return $this->identifier; } /** * {@inheritdoc} */ public function setIdentifier($identifier) { $this->identifier = $identifier; return $this; } /** * {@inheritdoc} */ public function getResponseType() { return $this->responseType; } /** * Get the TTL for an access token * * @return int The TTL */ public function getAccessTokenTTL() { if ($this->accessTokenTTL) { return $this->accessTokenTTL; } return $this->server->getAccessTokenTTL(); } /** * Override the default access token expire time * * @param int $accessTokenTTL * * @return self */ public function setAccessTokenTTL($accessTokenTTL) { $this->accessTokenTTL = $accessTokenTTL; return $this; } /** * {@inheritdoc} */ public function setAuthorizationServer(AuthorizationServer $server) { $this->server = $server; return $this; } /** * Given a list of scopes, validate them and return an array of Scope entities * * @param string $scopeParam A string of scopes (e.g. "profile email birthday") * @param \League\OAuth2\Server\Entity\ClientEntity $client Client entity * @param string|null $redirectUri The redirect URI to return the user to * * @return \League\OAuth2\Server\Entity\ScopeEntity[] * * @throws \League\OAuth2\Server\Exception\InvalidScopeException If scope is invalid, or no scopes passed when required * @throws */ public function validateScopes($scopeParam = '', ClientEntity $client, $redirectUri = null) { $scopesList = explode($this->server->getScopeDelimiter(), $scopeParam); for ($i = 0; $i < count($scopesList); $i++) { $scopesList[$i] = trim($scopesList[$i]); if ($scopesList[$i] === '') { unset($scopesList[$i]); // Remove any junk scopes } } if ( $this->server->scopeParamRequired() === true && $this->server->getDefaultScope() === null && count($scopesList) === 0 ) { throw new Exception\InvalidRequestException('scope'); } elseif (count($scopesList) === 0 && $this->server->getDefaultScope() !== null) { if (is_array($this->server->getDefaultScope())) { $scopesList = $this->server->getDefaultScope(); } else { $scopesList = [0 => $this->server->getDefaultScope()]; } } $scopes = []; foreach ($scopesList as $scopeItem) { $scope = $this->server->getScopeStorage()->get( $scopeItem, $this->getIdentifier(), $client->getId() ); if (($scope instanceof ScopeEntity) === false) { throw new Exception\InvalidScopeException($scopeItem, $redirectUri); } $scopes[$scope->getId()] = $scope; } return $scopes; } /** * Format the local scopes array * * @param \League\OAuth2\Server\Entity\ScopeEntity[] * * @return array */ protected function formatScopes($unformated = []) { $scopes = []; foreach ($unformated as $scope) { if ($scope instanceof ScopeEntity) { $scopes[$scope->getId()] = $scope; } } return $scopes; } } oauth2-server/src/Grant/error_log; 0000644 00000146470 14716425166 0013154 0 ustar 00 [16-Sep-2023 09:43:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [22-Sep-2023 23:44:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [01-Oct-2023 14:53:37 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [01-Oct-2023 14:53:38 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [01-Oct-2023 14:53:40 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [01-Oct-2023 14:53:43 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [01-Oct-2023 14:53:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [01-Oct-2023 17:49:11 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [01-Oct-2023 17:49:12 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [01-Oct-2023 17:49:13 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [01-Oct-2023 17:49:18 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [01-Oct-2023 17:49:19 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [10-Oct-2023 15:40:06 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [05-Nov-2023 20:58:41 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [06-Nov-2023 03:27:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [23-Nov-2023 11:49:18 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [23-Nov-2023 11:49:25 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [23-Nov-2023 11:49:27 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [23-Nov-2023 11:49:31 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [23-Nov-2023 11:49:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [25-Nov-2023 06:44:29 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [25-Nov-2023 06:44:31 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [25-Nov-2023 06:44:32 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [25-Nov-2023 06:44:38 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [25-Nov-2023 06:44:47 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [26-Nov-2023 14:15:44 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [26-Nov-2023 14:15:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [26-Nov-2023 14:15:57 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [26-Nov-2023 14:15:59 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [26-Nov-2023 14:16:02 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [27-Nov-2023 04:21:44 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [27-Nov-2023 21:03:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [27-Nov-2023 21:03:48 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [27-Nov-2023 21:03:51 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [27-Nov-2023 21:03:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [27-Nov-2023 21:03:58 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [02-Dec-2023 14:40:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [30-Dec-2023 14:44:04 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [05-Jan-2024 07:49:57 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [05-Jan-2024 08:47:26 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [10-Jan-2024 22:14:51 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [24-Jan-2024 23:05:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [23-Feb-2024 01:43:27 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [01-Mar-2024 10:35:15 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [10-Mar-2024 22:49:25 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [18-Mar-2024 02:18:38 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [02-Apr-2024 22:01:55 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [03-Apr-2024 03:26:33 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [03-Apr-2024 08:08:00 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [03-Apr-2024 08:41:13 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [03-Apr-2024 08:44:28 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [04-Apr-2024 03:37:30 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [04-Apr-2024 11:11:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [04-Apr-2024 16:22:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [04-Apr-2024 16:52:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [04-Apr-2024 20:55:43 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [11-Apr-2024 17:44:26 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [01-May-2024 19:53:43 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [04-May-2024 23:05:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [04-May-2024 23:05:40 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [04-May-2024 23:05:43 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [04-May-2024 23:32:15 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [04-May-2024 23:56:40 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [05-May-2024 03:34:01 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [05-May-2024 04:53:44 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [05-May-2024 05:09:34 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [05-May-2024 05:33:17 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [05-May-2024 09:01:31 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [05-May-2024 09:01:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [05-May-2024 09:01:40 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [05-May-2024 09:28:04 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [05-May-2024 09:52:16 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [05-May-2024 12:36:12 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [05-May-2024 19:11:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [05-May-2024 19:11:40 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [05-May-2024 19:11:44 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [05-May-2024 19:27:00 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [05-May-2024 19:50:08 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [12-May-2024 01:57:03 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [13-May-2024 19:50:03 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [14-May-2024 19:01:28 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [14-May-2024 19:01:33 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [14-May-2024 19:01:38 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [14-May-2024 19:16:16 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [14-May-2024 19:21:22 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [17-May-2024 18:42:09 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [17-May-2024 18:49:39 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [17-May-2024 18:53:06 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [17-May-2024 23:43:39 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [18-May-2024 08:36:12 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [19-May-2024 11:08:02 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [27-May-2024 10:15:55 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [27-May-2024 14:15:57 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [27-May-2024 15:22:37 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [27-May-2024 15:54:42 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [27-May-2024 21:14:05 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [09-Jun-2024 13:32:02 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [10-Jun-2024 17:27:40 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [15-Jun-2024 21:07:08 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [19-Jun-2024 00:24:25 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [19-Jun-2024 00:24:30 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [19-Jun-2024 00:24:33 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [19-Jun-2024 00:25:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [19-Jun-2024 00:27:06 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [19-Jun-2024 07:26:21 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [19-Jun-2024 07:26:25 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [19-Jun-2024 07:26:29 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [19-Jun-2024 07:27:41 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [19-Jun-2024 07:29:05 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [19-Jun-2024 22:11:29 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [19-Jun-2024 22:11:35 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [19-Jun-2024 22:11:37 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [19-Jun-2024 22:12:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [19-Jun-2024 22:14:13 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [20-Jun-2024 00:07:41 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [28-Jun-2024 05:52:44 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [02-Jul-2024 09:21:24 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [02-Jul-2024 11:16:08 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [02-Jul-2024 18:04:06 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [02-Jul-2024 19:21:04 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [03-Jul-2024 18:03:22 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [04-Jul-2024 14:17:34 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [04-Jul-2024 19:43:05 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [08-Jul-2024 17:00:07 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [08-Jul-2024 17:26:39 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [09-Jul-2024 10:04:50 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [14-Jul-2024 05:33:28 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [15-Jul-2024 08:44:42 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [15-Jul-2024 11:17:09 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [18-Jul-2024 22:29:58 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [19-Jul-2024 01:33:56 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [21-Jul-2024 01:18:00 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [21-Jul-2024 10:04:06 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [22-Jul-2024 17:39:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [22-Jul-2024 17:39:40 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [22-Jul-2024 17:39:44 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [22-Jul-2024 18:04:32 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [22-Jul-2024 18:26:16 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [23-Jul-2024 20:39:27 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [24-Jul-2024 00:42:56 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [29-Jul-2024 11:38:44 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [30-Jul-2024 10:11:37 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [01-Aug-2024 00:01:46 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [08-Aug-2024 21:13:50 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [08-Aug-2024 22:43:11 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [09-Aug-2024 15:25:03 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [10-Aug-2024 05:40:28 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [10-Aug-2024 06:03:25 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [10-Aug-2024 13:21:29 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [12-Aug-2024 17:16:15 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [15-Aug-2024 09:44:39 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [16-Aug-2024 22:30:06 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [17-Aug-2024 04:10:14 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [17-Aug-2024 04:14:48 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [17-Aug-2024 16:28:34 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [19-Aug-2024 14:34:27 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [19-Aug-2024 16:56:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [25-Aug-2024 04:40:56 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [25-Aug-2024 17:46:34 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [30-Aug-2024 10:09:03 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [31-Aug-2024 15:18:21 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [01-Sep-2024 21:16:25 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [01-Sep-2024 21:16:29 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [01-Sep-2024 21:16:33 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [01-Sep-2024 21:43:05 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [01-Sep-2024 22:07:29 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [10-Sep-2024 14:44:20 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [10-Sep-2024 14:44:24 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [10-Sep-2024 14:44:28 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [10-Sep-2024 14:44:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [10-Sep-2024 14:44:40 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [10-Sep-2024 14:44:44 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [10-Sep-2024 15:13:08 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [10-Sep-2024 15:13:24 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [10-Sep-2024 15:21:04 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [10-Sep-2024 15:21:12 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [11-Sep-2024 14:06:00 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [11-Sep-2024 17:31:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [11-Sep-2024 21:12:32 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [11-Sep-2024 21:12:37 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [11-Sep-2024 21:12:40 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [11-Sep-2024 21:36:44 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [11-Sep-2024 21:57:24 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [11-Sep-2024 22:28:47 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [15-Sep-2024 01:49:05 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [15-Sep-2024 21:17:50 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [16-Sep-2024 08:16:03 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [16-Sep-2024 13:01:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [16-Sep-2024 13:10:22 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [16-Sep-2024 21:42:26 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [18-Sep-2024 03:22:45 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [18-Sep-2024 08:08:27 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [23-Sep-2024 16:55:31 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [24-Sep-2024 13:30:00 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [24-Sep-2024 22:15:17 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [24-Sep-2024 22:16:23 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [24-Sep-2024 23:35:22 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [30-Sep-2024 04:32:14 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [02-Oct-2024 07:58:55 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [02-Oct-2024 21:20:33 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [03-Oct-2024 10:10:19 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [03-Oct-2024 10:51:24 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [04-Oct-2024 14:15:50 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [05-Oct-2024 10:44:01 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [10-Oct-2024 06:56:17 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [18-Oct-2024 05:39:18 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [18-Oct-2024 14:18:44 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [18-Oct-2024 14:19:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [18-Oct-2024 14:25:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [18-Oct-2024 14:29:48 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [19-Oct-2024 00:32:11 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [23-Oct-2024 17:17:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [24-Oct-2024 02:00:27 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [24-Oct-2024 04:03:37 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [24-Oct-2024 12:45:35 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [26-Oct-2024 04:37:27 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [26-Oct-2024 14:34:22 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [31-Oct-2024 12:11:22 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [31-Oct-2024 12:11:26 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [31-Oct-2024 12:11:30 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [31-Oct-2024 12:31:33 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [31-Oct-2024 12:46:02 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [05-Nov-2024 04:01:11 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [05-Nov-2024 21:04:09 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [09-Nov-2024 03:14:19 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/PasswordGrant.php on line 25 [09-Nov-2024 03:14:23 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php on line 26 [09-Nov-2024 03:14:27 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 [09-Nov-2024 03:20:35 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php on line 24 [09-Nov-2024 03:34:19 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Grant\AbstractGrant' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php on line 24 [11-Nov-2024 11:31:33 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Grant\GrantTypeInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Grant/AbstractGrant.php on line 22 oauth2-server/src/Grant/AuthCodeGrant.php 0000644 00000022604 14716425166 0014335 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Grant; use League\OAuth2\Server\Entity\AccessTokenEntity; use League\OAuth2\Server\Entity\AuthCodeEntity; use League\OAuth2\Server\Entity\ClientEntity; use League\OAuth2\Server\Entity\RefreshTokenEntity; use League\OAuth2\Server\Entity\SessionEntity; use League\OAuth2\Server\Event; use League\OAuth2\Server\Exception; use League\OAuth2\Server\Util\SecureKey; /** * Auth code grant class */ class AuthCodeGrant extends AbstractGrant { /** * Grant identifier * * @var string */ protected $identifier = 'authorization_code'; /** * Response type * * @var string */ protected $responseType = 'code'; /** * AuthServer instance * * @var \League\OAuth2\Server\AuthorizationServer */ protected $server = null; /** * Access token expires in override * * @var int */ protected $accessTokenTTL = null; /** * The TTL of the auth token * * @var integer */ protected $authTokenTTL = 600; /** * Whether to require the client secret when * completing the flow. * * @var boolean */ protected $requireClientSecret = true; /** * Override the default access token expire time * * @param int $authTokenTTL * * @return void */ public function setAuthTokenTTL($authTokenTTL) { $this->authTokenTTL = $authTokenTTL; } /** * * @param bool $required True to require client secret during access * token request. False if not. Default = true */ public function setRequireClientSecret($required) { $this->requireClientSecret = $required; } /** * True if client secret is required during * access token request. False if it isn't. * * @return bool */ public function shouldRequireClientSecret() { return $this->requireClientSecret; } /** * Check authorize parameters * * @return array Authorize request parameters * * @throws */ public function checkAuthorizeParams() { // Get required params $clientId = $this->server->getRequest()->query->get('client_id', null); if (is_null($clientId)) { throw new Exception\InvalidRequestException('client_id'); } $redirectUri = $this->server->getRequest()->query->get('redirect_uri', null); if (is_null($redirectUri)) { throw new Exception\InvalidRequestException('redirect_uri'); } // Validate client ID and redirect URI $client = $this->server->getClientStorage()->get( $clientId, null, $redirectUri, $this->getIdentifier() ); if (($client instanceof ClientEntity) === false) { $this->server->getEventEmitter()->emit(new Event\ClientAuthenticationFailedEvent($this->server->getRequest())); throw new Exception\InvalidClientException(); } $state = $this->server->getRequest()->query->get('state', null); if ($this->server->stateParamRequired() === true && is_null($state)) { throw new Exception\InvalidRequestException('state', $redirectUri); } $responseType = $this->server->getRequest()->query->get('response_type', null); if (is_null($responseType)) { throw new Exception\InvalidRequestException('response_type', $redirectUri); } // Ensure response type is one that is recognised if (!in_array($responseType, $this->server->getResponseTypes())) { throw new Exception\UnsupportedResponseTypeException($responseType, $redirectUri); } // Validate any scopes that are in the request $scopeParam = $this->server->getRequest()->query->get('scope', ''); $scopes = $this->validateScopes($scopeParam, $client, $redirectUri); return [ 'client' => $client, 'redirect_uri' => $redirectUri, 'state' => $state, 'response_type' => $responseType, 'scopes' => $scopes ]; } /** * Parse a new authorize request * * @param string $type The session owner's type * @param string $typeId The session owner's ID * @param array $authParams The authorize request $_GET parameters * * @return string An authorisation code */ public function newAuthorizeRequest($type, $typeId, $authParams = []) { // Create a new session $session = new SessionEntity($this->server); $session->setOwner($type, $typeId); $session->associateClient($authParams['client']); // Create a new auth code $authCode = new AuthCodeEntity($this->server); $authCode->setId(SecureKey::generate()); $authCode->setRedirectUri($authParams['redirect_uri']); $authCode->setExpireTime(time() + $this->authTokenTTL); foreach ($authParams['scopes'] as $scope) { $authCode->associateScope($scope); $session->associateScope($scope); } $session->save(); $authCode->setSession($session); $authCode->save(); return $authCode->generateRedirectUri($authParams['state']); } /** * Complete the auth code grant * * @return array * * @throws */ public function completeFlow() { // Get the required params $clientId = $this->server->getRequest()->request->get('client_id', $this->server->getRequest()->getUser()); if (is_null($clientId)) { throw new Exception\InvalidRequestException('client_id'); } $clientSecret = $this->server->getRequest()->request->get('client_secret', $this->server->getRequest()->getPassword()); if ($this->shouldRequireClientSecret() && is_null($clientSecret)) { throw new Exception\InvalidRequestException('client_secret'); } $redirectUri = $this->server->getRequest()->request->get('redirect_uri', null); if (is_null($redirectUri)) { throw new Exception\InvalidRequestException('redirect_uri'); } // Validate client ID and client secret $client = $this->server->getClientStorage()->get( $clientId, $clientSecret, $redirectUri, $this->getIdentifier() ); if (($client instanceof ClientEntity) === false) { $this->server->getEventEmitter()->emit(new Event\ClientAuthenticationFailedEvent($this->server->getRequest())); throw new Exception\InvalidClientException(); } // Validate the auth code $authCode = $this->server->getRequest()->request->get('code', null); if (is_null($authCode)) { throw new Exception\InvalidRequestException('code'); } $code = $this->server->getAuthCodeStorage()->get($authCode); if (($code instanceof AuthCodeEntity) === false) { throw new Exception\InvalidRequestException('code'); } // Ensure the auth code hasn't expired if ($code->isExpired() === true) { throw new Exception\InvalidRequestException('code'); } // Check redirect URI presented matches redirect URI originally used in authorize request if ($code->getRedirectUri() !== $redirectUri) { throw new Exception\InvalidRequestException('redirect_uri'); } $session = $code->getSession(); $session->associateClient($client); $authCodeScopes = $code->getScopes(); // Generate the access token $accessToken = new AccessTokenEntity($this->server); $accessToken->setId(SecureKey::generate()); $accessToken->setExpireTime($this->getAccessTokenTTL() + time()); foreach ($authCodeScopes as $authCodeScope) { $session->associateScope($authCodeScope); } foreach ($session->getScopes() as $scope) { $accessToken->associateScope($scope); } $this->server->getTokenType()->setSession($session); $this->server->getTokenType()->setParam('access_token', $accessToken->getId()); $this->server->getTokenType()->setParam('expires_in', $this->getAccessTokenTTL()); // Associate a refresh token if set if ($this->server->hasGrantType('refresh_token')) { $refreshToken = new RefreshTokenEntity($this->server); $refreshToken->setId(SecureKey::generate()); $refreshToken->setExpireTime($this->server->getGrantType('refresh_token')->getRefreshTokenTTL() + time()); $this->server->getTokenType()->setParam('refresh_token', $refreshToken->getId()); } // Expire the auth code $code->expire(); // Save all the things $accessToken->setSession($session); $accessToken->save(); if (isset($refreshToken) && $this->server->hasGrantType('refresh_token')) { $refreshToken->setAccessToken($accessToken); $refreshToken->save(); } return $this->server->getTokenType()->generateResponse(); } } oauth2-server/src/AuthorizationServer.php 0000644 00000014773 14716425166 0014631 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server; use League\OAuth2\Server\Grant\GrantTypeInterface; use League\OAuth2\Server\TokenType\Bearer; /** * OAuth 2.0 authorization server class */ class AuthorizationServer extends AbstractServer { /** * The delimiter between scopes specified in the scope query string parameter * The OAuth 2 specification states it should be a space but most use a comma * * @var string */ protected $scopeDelimiter = ' '; /** * The TTL (time to live) of an access token in seconds (default: 3600) * * @var integer */ protected $accessTokenTTL = 3600; /** * The registered grant response types * * @var array */ protected $responseTypes = []; /** * The registered grant types * * @var array */ protected $grantTypes = []; /** * Require the "scope" parameter to be in checkAuthoriseParams() * * @var boolean */ protected $requireScopeParam = false; /** * Default scope(s) to be used if none is provided * * @var string|array */ protected $defaultScope; /** * Require the "state" parameter to be in checkAuthoriseParams() * * @var boolean */ protected $requireStateParam = false; /** * Create a new OAuth2 authorization server * * @return self */ public function __construct() { // Set Bearer as the default token type $this->setTokenType(new Bearer()); parent::__construct(); return $this; } /** * Enable support for a grant * * @param GrantTypeInterface $grantType A grant class which conforms to Interface/GrantTypeInterface * @param null|string $identifier An identifier for the grant (autodetected if not passed) * * @return self */ public function addGrantType(GrantTypeInterface $grantType, $identifier = null) { if (is_null($identifier)) { $identifier = $grantType->getIdentifier(); } // Inject server into grant $grantType->setAuthorizationServer($this); $this->grantTypes[$identifier] = $grantType; if (!is_null($grantType->getResponseType())) { $this->responseTypes[] = $grantType->getResponseType(); } return $this; } /** * Check if a grant type has been enabled * * @param string $identifier The grant type identifier * * @return boolean Returns "true" if enabled, "false" if not */ public function hasGrantType($identifier) { return (array_key_exists($identifier, $this->grantTypes)); } /** * Returns response types * * @return array */ public function getResponseTypes() { return $this->responseTypes; } /** * Require the "scope" parameter in checkAuthoriseParams() * * @param boolean $require * * @return self */ public function requireScopeParam($require = true) { $this->requireScopeParam = $require; return $this; } /** * Is the scope parameter required? * * @return bool */ public function scopeParamRequired() { return $this->requireScopeParam; } /** * Default scope to be used if none is provided and requireScopeParam() is false * * @param string $default Name of the default scope * * @return self */ public function setDefaultScope($default = null) { $this->defaultScope = $default; return $this; } /** * Default scope to be used if none is provided and requireScopeParam is false * * @return string|null */ public function getDefaultScope() { return $this->defaultScope; } /** * Require the "state" parameter in checkAuthoriseParams() * * @return bool */ public function stateParamRequired() { return $this->requireStateParam; } /** * Require the "state" parameter in checkAuthoriseParams() * * @param boolean $require * * @return self */ public function requireStateParam($require = true) { $this->requireStateParam = $require; return $this; } /** * Get the scope delimiter * * @return string The scope delimiter (default: ",") */ public function getScopeDelimiter() { return $this->scopeDelimiter; } /** * Set the scope delimiter * * @param string $scopeDelimiter * * @return self */ public function setScopeDelimiter($scopeDelimiter = ' ') { $this->scopeDelimiter = $scopeDelimiter; return $this; } /** * Get the TTL for an access token * * @return int The TTL */ public function getAccessTokenTTL() { return $this->accessTokenTTL; } /** * Set the TTL for an access token * * @param int $accessTokenTTL The new TTL * * @return self */ public function setAccessTokenTTL($accessTokenTTL = 3600) { $this->accessTokenTTL = $accessTokenTTL; return $this; } /** * Issue an access token * * @return array Authorise request parameters * * @throws */ public function issueAccessToken() { $grantType = $this->getRequest()->request->get('grant_type'); if (is_null($grantType)) { throw new Exception\InvalidRequestException('grant_type'); } // Ensure grant type is one that is recognised and is enabled if (!in_array($grantType, array_keys($this->grantTypes))) { throw new Exception\UnsupportedGrantTypeException($grantType); } // Complete the flow return $this->getGrantType($grantType)->completeFlow(); } /** * Return a grant type class * * @param string $grantType The grant type identifier * * @return Grant\GrantTypeInterface * * @throws */ public function getGrantType($grantType) { if (isset($this->grantTypes[$grantType])) { return $this->grantTypes[$grantType]; } throw new Exception\InvalidGrantException($grantType); } } oauth2-server/src/Entity/AuthCodeEntity.php 0000644 00000005574 14716425166 0014746 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Entity; /** * Auth Code entity class */ class AuthCodeEntity extends AbstractTokenEntity { /** * Redirect URI * * @var string */ protected $redirectUri = ''; /** * Set the redirect URI for the authorization request * * @param string $redirectUri * * @return self */ public function setRedirectUri($redirectUri) { $this->redirectUri = $redirectUri; return $this; } /** * Get the redirect URI * * @return string */ public function getRedirectUri() { return $this->redirectUri; } /** * Generate a redirect URI * * @param string $state The state parameter if set by the client * @param string $queryDelimeter The query delimiter ('?' for auth code grant, '#' for implicit grant) * * @return string */ public function generateRedirectUri($state = null, $queryDelimeter = '?') { $uri = $this->getRedirectUri(); $uri .= (strstr($this->getRedirectUri(), $queryDelimeter) === false) ? $queryDelimeter : '&'; return $uri.http_build_query([ 'code' => $this->getId(), 'state' => $state, ]); } /** * Get session * * @return \League\OAuth2\Server\Entity\SessionEntity */ public function getSession() { if ($this->session instanceof SessionEntity) { return $this->session; } $this->session = $this->server->getSessionStorage()->getByAuthCode($this); return $this->session; } /** * Return all scopes associated with the session * * @return \League\OAuth2\Server\Entity\ScopeEntity[] */ public function getScopes() { if ($this->scopes === null) { $this->scopes = $this->formatScopes( $this->server->getAuthCodeStorage()->getScopes($this) ); } return $this->scopes; } /** * {@inheritdoc} */ public function save() { $this->server->getAuthCodeStorage()->create( $this->getId(), $this->getExpireTime(), $this->getSession()->getId(), $this->getRedirectUri() ); // Associate the scope with the token foreach ($this->getScopes() as $scope) { $this->server->getAuthCodeStorage()->associateScope($this, $scope); } return $this; } /** * {@inheritdoc} */ public function expire() { $this->server->getAuthCodeStorage()->delete($this); } } oauth2-server/src/Entity/ClientEntity.php 0000644 00000003432 14716425166 0014457 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Entity; use League\OAuth2\Server\AbstractServer; /** * Client entity class */ class ClientEntity { use EntityTrait; /** * Client identifier * * @var string */ protected $id = null; /** * Client secret * * @var string */ protected $secret = null; /** * Client name * * @var string */ protected $name = null; /** * Client redirect URI * * @var string */ protected $redirectUri = null; /** * Authorization or resource server * * @var \League\OAuth2\Server\AbstractServer */ protected $server; /** * __construct * * @param \League\OAuth2\Server\AbstractServer $server * * @return self */ public function __construct(AbstractServer $server) { $this->server = $server; return $this; } /** * Return the client identifier * * @return string */ public function getId() { return $this->id; } /** * Return the client secret * * @return string */ public function getSecret() { return $this->secret; } /** * Get the client name * * @return string */ public function getName() { return $this->name; } /** * Returnt the client redirect URI * * @return string */ public function getRedirectUri() { return $this->redirectUri; } } oauth2-server/src/Entity/ScopeEntity.php 0000644 00000003136 14716425166 0014313 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Entity; use League\OAuth2\Server\AbstractServer; /** * Scope entity class */ class ScopeEntity implements \JsonSerializable { use EntityTrait; /** * Scope identifier * * @var string */ protected $id; /** * Scope description * * @var string */ protected $description; /** * Authorization or resource server * * @var \League\OAuth2\Server\AbstractServer */ protected $server; /** * __construct * * @param \League\OAuth2\Server\AbstractServer $server * * @return self */ public function __construct(AbstractServer $server) { $this->server = $server; return $this; } /** * Return the scope identifer * * @return string */ public function getId() { return $this->id; } /** * Return the scope's description * * @return string */ public function getDescription() { return $this->description; } /** * Returns a JSON object when entity is passed into json_encode * * @return array */ public function jsonSerialize() { return [ 'id' => $this->getId(), 'description' => $this->getDescription() ]; } } oauth2-server/src/Entity/EntityTrait.php 0000644 00000001300 14716425166 0014314 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Entity; trait EntityTrait { /** * Hydrate an entity with properites * * @param array $properties * * @return self */ public function hydrate(array $properties) { foreach ($properties as $prop => $val) { if (property_exists($this, $prop)) { $this->{$prop} = $val; } } return $this; } } oauth2-server/src/Entity/RefreshTokenEntity.php 0000644 00000003773 14716425166 0015650 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Entity; /** * Refresh token entity class */ class RefreshTokenEntity extends AbstractTokenEntity { /** * Access token associated to refresh token * * @var \League\OAuth2\Server\Entity\AccessTokenEntity */ protected $accessTokenEntity; /** * Id of the access token * * @var string */ protected $accessTokenId; /** * Set the ID of the associated access token * * @param string $accessTokenId * * @return self */ public function setAccessTokenId($accessTokenId) { $this->accessTokenId = $accessTokenId; return $this; } /** * Associate an access token * * @param \League\OAuth2\Server\Entity\AccessTokenEntity $accessTokenEntity * * @return self */ public function setAccessToken(AccessTokenEntity $accessTokenEntity) { $this->accessTokenEntity = $accessTokenEntity; return $this; } /** * Return access token * * @return AccessTokenEntity */ public function getAccessToken() { if (! $this->accessTokenEntity instanceof AccessTokenEntity) { $this->accessTokenEntity = $this->server->getAccessTokenStorage()->get($this->accessTokenId); } return $this->accessTokenEntity; } /** * {@inheritdoc} */ public function save() { $this->server->getRefreshTokenStorage()->create( $this->getId(), $this->getExpireTime(), $this->getAccessToken()->getId() ); } /** * {@inheritdoc} */ public function expire() { $this->server->getRefreshTokenStorage()->delete($this); } } oauth2-server/src/Entity/error_log; 0000644 00000150654 14716425166 0013354 0 ustar 00 [20-Sep-2023 02:00:53 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [20-Sep-2023 03:32:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [23-Sep-2023 19:47:54 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [01-Oct-2023 14:53:23 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [01-Oct-2023 14:53:24 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [01-Oct-2023 14:53:25 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [01-Oct-2023 14:53:26 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [01-Oct-2023 14:53:31 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [01-Oct-2023 17:49:58 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [01-Oct-2023 17:50:00 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [01-Oct-2023 17:50:07 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [01-Oct-2023 17:50:09 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [01-Oct-2023 17:50:10 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [02-Oct-2023 00:46:13 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [07-Nov-2023 11:51:44 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [23-Nov-2023 20:10:03 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [23-Nov-2023 20:10:09 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [23-Nov-2023 20:10:14 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [23-Nov-2023 20:10:17 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [23-Nov-2023 20:10:19 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [24-Nov-2023 16:43:02 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [24-Nov-2023 16:43:05 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [24-Nov-2023 16:43:12 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [24-Nov-2023 16:43:16 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [24-Nov-2023 16:43:26 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [25-Nov-2023 07:40:04 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [25-Nov-2023 07:40:07 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [25-Nov-2023 07:40:20 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [25-Nov-2023 07:40:22 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [25-Nov-2023 07:40:29 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [27-Nov-2023 20:19:26 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [27-Nov-2023 20:19:28 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [27-Nov-2023 20:19:41 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [27-Nov-2023 20:19:43 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [27-Nov-2023 20:19:45 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [28-Nov-2023 02:14:13 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [30-Nov-2023 02:40:34 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [01-Dec-2023 00:57:13 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [02-Dec-2023 23:40:04 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [04-Jan-2024 06:01:01 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [05-Jan-2024 07:26:40 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [07-Jan-2024 04:21:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [07-Jan-2024 22:45:50 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [21-Jan-2024 17:17:08 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [25-Feb-2024 20:32:55 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [02-Mar-2024 20:47:46 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [12-Mar-2024 03:56:16 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [13-Mar-2024 05:04:14 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [02-Apr-2024 23:33:19 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [03-Apr-2024 10:56:55 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [03-Apr-2024 10:59:48 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [04-Apr-2024 01:22:45 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [04-Apr-2024 04:29:19 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [04-Apr-2024 04:29:22 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Ent[04-Apr-2024 09:38:23 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [04-Apr-2024 16:08:33 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [05-Apr-2024 17:32:40 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [04-May-2024 05:38:35 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [04-May-2024 21:45:54 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [04-May-2024 22:45:53 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [04-May-2024 23:06:52 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [04-May-2024 23:06:56 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [04-May-2024 23:26:20 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [04-May-2024 23:26:28 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [04-May-2024 23:37:52 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [05-May-2024 01:13:29 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [05-May-2024 01:32:02 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [05-May-2024 05:01:39 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [05-May-2024 09:02:47 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [05-May-2024 09:02:52 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [05-May-2024 09:22:08 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [05-May-2024 09:22:16 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [05-May-2024 09:33:39 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [05-May-2024 19:12:52 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [05-May-2024 19:12:56 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [05-May-2024 19:22:13 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [05-May-2024 19:22:16 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [05-May-2024 19:32:20 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [10-May-2024 00:12:10 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [10-May-2024 10:56:24 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [14-May-2024 19:01:48 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [14-May-2024 19:01:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [14-May-2024 19:13:32 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [14-May-2024 19:13:40 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [14-May-2024 19:17:26 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [17-May-2024 10:42:25 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [17-May-2024 11:31:23 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [17-May-2024 12:10:02 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [17-May-2024 13:30:22 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [20-May-2024 04:16:36 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [22-May-2024 09:49:03 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [22-May-2024 16:44:03 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [22-May-2024 18:42:26 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [23-May-2024 00:47:48 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [23-May-2024 02:00:52 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [23-May-2024 19:16:07 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [01-Jun-2024 13:21:08 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [10-Jun-2024 05:43:26 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [12-Jun-2024 04:45:13 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [16-Jun-2024 01:32:27 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [16-Jun-2024 03:49:08 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [19-Jun-2024 00:24:37 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [19-Jun-2024 00:24:41 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [19-Jun-2024 00:25:05 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [19-Jun-2024 00:25:13 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [19-Jun-2024 00:26:05 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [19-Jun-2024 07:26:37 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [19-Jun-2024 07:26:41 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [19-Jun-2024 07:27:05 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [19-Jun-2024 07:27:13 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [19-Jun-2024 07:28:05 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [19-Jun-2024 22:11:45 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [19-Jun-2024 22:11:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [19-Jun-2024 22:12:13 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [19-Jun-2024 22:12:21 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [19-Jun-2024 22:13:13 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [28-Jun-2024 02:52:52 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [02-Jul-2024 09:29:35 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [02-Jul-2024 17:06:02 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [03-Jul-2024 02:39:09 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [03-Jul-2024 12:15:13 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [04-Jul-2024 02:01:02 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [04-Jul-2024 13:03:07 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [08-Jul-2024 16:58:59 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [08-Jul-2024 17:05:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [08-Jul-2024 19:21:07 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [14-Jul-2024 20:03:38 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [15-Jul-2024 11:24:02 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [15-Jul-2024 11:25:13 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [19-Jul-2024 00:51:58 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [20-Jul-2024 10:42:06 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [21-Jul-2024 01:41:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [21-Jul-2024 07:34:15 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [21-Jul-2024 10:06:47 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [21-Jul-2024 10:09:17 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [22-Jul-2024 17:40:52 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [22-Jul-2024 17:40:56 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [22-Jul-2024 17:59:24 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [22-Jul-2024 17:59:32 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [22-Jul-2024 18:09:04 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [24-Jul-2024 00:15:32 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [24-Jul-2024 01:42:49 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [27-Jul-2024 05:30:52 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [28-Jul-2024 04:29:47 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [28-Jul-2024 21:33:10 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [30-Jul-2024 05:27:16 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [30-Jul-2024 22:15:14 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [31-Jul-2024 05:34:32 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [31-Jul-2024 07:31:00 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [03-Aug-2024 11:23:05 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [05-Aug-2024 23:22:57 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [05-Aug-2024 23:58:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [06-Aug-2024 12:53:38 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [07-Aug-2024 03:40:21 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [09-Aug-2024 00:55:24 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [09-Aug-2024 12:56:44 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [09-Aug-2024 22:51:20 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [10-Aug-2024 09:10:12 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [10-Aug-2024 11:19:56 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [10-Aug-2024 11:32:35 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [12-Aug-2024 06:48:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [12-Aug-2024 15:17:50 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [17-Aug-2024 00:49:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [20-Aug-2024 20:21:35 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [24-Aug-2024 00:54:13 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [25-Aug-2024 15:51:30 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [26-Aug-2024 20:01:39 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [29-Aug-2024 03:32:58 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [30-Aug-2024 17:56:41 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [30-Aug-2024 22:56:08 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [01-Sep-2024 21:17:41 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [01-Sep-2024 21:17:45 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [01-Sep-2024 21:37:09 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [01-Sep-2024 21:37:17 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [01-Sep-2024 21:48:41 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [07-Sep-2024 13:53:13 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [07-Sep-2024 13:53:17 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [07-Sep-2024 13:53:21 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [07-Sep-2024 13:53:25 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [07-Sep-2024 14:04:02 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [07-Sep-2024 14:04:09 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [07-Sep-2024 14:04:21 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [07-Sep-2024 14:04:30 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [07-Sep-2024 16:58:33 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [07-Sep-2024 16:58:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [09-Sep-2024 03:00:10 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [11-Sep-2024 21:13:40 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [11-Sep-2024 21:13:44 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [11-Sep-2024 21:31:48 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [11-Sep-2024 21:31:56 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [11-Sep-2024 21:40:56 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [15-Sep-2024 18:49:06 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [16-Sep-2024 07:03:51 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [16-Sep-2024 10:04:51 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [16-Sep-2024 12:45:49 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [17-Sep-2024 09:06:17 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [18-Sep-2024 07:55:21 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [19-Sep-2024 15:06:26 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [25-Sep-2024 10:31:21 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [02-Oct-2024 07:51:25 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [02-Oct-2024 18:38:46 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [02-Oct-2024 22:31:58 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [03-Oct-2024 06:28:37 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [04-Oct-2024 17:44:03 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [12-Oct-2024 11:31:12 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [18-Oct-2024 14:16:58 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [18-Oct-2024 14:17:38 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [18-Oct-2024 14:26:10 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [18-Oct-2024 14:26:50 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [18-Oct-2024 14:28:01 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [18-Oct-2024 21:50:57 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [19-Oct-2024 01:54:04 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [23-Oct-2024 12:02:23 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [23-Oct-2024 21:31:34 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [24-Oct-2024 14:19:38 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [24-Oct-2024 18:10:37 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [31-Oct-2024 12:12:42 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [31-Oct-2024 12:12:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [31-Oct-2024 12:26:50 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [31-Oct-2024 12:26:58 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [31-Oct-2024 12:35:09 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [01-Nov-2024 00:16:33 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [05-Nov-2024 15:53:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [05-Nov-2024 17:58:02 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [06-Nov-2024 23:24:35 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [06-Nov-2024 23:45:33 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [07-Nov-2024 00:47:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [09-Nov-2024 03:15:15 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ClientEntity.php on line 21 [09-Nov-2024 03:15:19 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AuthCodeEntity.php on line 17 [09-Nov-2024 03:19:07 America/Fortaleza] PHP Fatal error: Trait 'League\OAuth2\Server\Entity\EntityTrait' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/ScopeEntity.php on line 21 [09-Nov-2024 03:19:15 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [09-Nov-2024 03:23:07 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/RefreshTokenEntity.php on line 17 [11-Nov-2024 00:06:06 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 [11-Nov-2024 09:01:20 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Entity\AbstractTokenEntity' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Entity/AccessTokenEntity.php on line 17 oauth2-server/src/Entity/AbstractTokenEntity.php 0000644 00000007373 14716425166 0016015 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Entity; use League\OAuth2\Server\AbstractServer; use League\OAuth2\Server\Util\SecureKey; /** * Abstract token class */ abstract class AbstractTokenEntity { /** * Token identifier * * @var string */ protected $id; /** * Associated session * * @var \League\OAuth2\Server\Entity\SessionEntity */ protected $session; /** * Session scopes * * @var \League\OAuth2\Server\Entity\ScopeEntity[] */ protected $scopes; /** * Token expire time * * @var int */ protected $expireTime = 0; /** * Authorization or resource server * * @var \League\OAuth2\Server\AbstractServer */ protected $server; /** * __construct * * @param \League\OAuth2\Server\AbstractServer $server * * @return self */ public function __construct(AbstractServer $server) { $this->server = $server; return $this; } /** * Set session * * @param \League\OAuth2\Server\Entity\SessionEntity $session * * @return self */ public function setSession(SessionEntity $session) { $this->session = $session; return $this; } /** * Set the expire time of the token * * @param integer $expireTime Unix time stamp * * @return self */ public function setExpireTime($expireTime) { $this->expireTime = $expireTime; return $this; } /** * Return token expire time * * @return int */ public function getExpireTime() { return $this->expireTime; } /** * Is the token expired? * * @return bool */ public function isExpired() { return ((time() - $this->expireTime) > 0); } /** * Set token ID * * @param string $id Token ID * * @return self */ public function setId($id = null) { $this->id = ($id !== null) ? $id : SecureKey::generate(); return $this; } /** * Get the token ID * * @return string */ public function getId() { return $this->id; } /** * Associate a scope * * @param \League\OAuth2\Server\Entity\ScopeEntity $scope * * @return self */ public function associateScope(ScopeEntity $scope) { if (!isset($this->scopes[$scope->getId()])) { $this->scopes[$scope->getId()] = $scope; } return $this; } /** * Format the local scopes array * * @param \League\OAuth2\Server\Entity\ScopeEntity[] * * @return array */ protected function formatScopes($unformatted = []) { if (is_null($unformatted)) { return []; } $scopes = []; foreach ($unformatted as $scope) { if ($scope instanceof ScopeEntity) { $scopes[$scope->getId()] = $scope; } } return $scopes; } /** * Returns the token as a string if the object is cast as a string * * @return string */ public function __toString() { if ($this->id === null) { return ''; } return $this->id; } /** * Expire the token * * @return void */ abstract public function expire(); /** * Save the token * * @return void */ abstract public function save(); } oauth2-server/src/Entity/SessionEntity.php 0000644 00000014327 14716425166 0014671 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Entity; use League\OAuth2\Server\AbstractServer; use League\OAuth2\Server\Event\SessionOwnerEvent; /** * Session entity grant */ class SessionEntity { /** * Session identifier * * @var string */ protected $id; /** * Client identifier * * @var \League\OAuth2\Server\Entity\ClientEntity */ protected $client; /** * Session owner identifier * * @var string */ protected $ownerId; /** * Session owner type (e.g. "user") * * @var string */ protected $ownerType; /** * Auth code * * @var \League\OAuth2\Server\Entity\AuthCodeEntity */ protected $authCode; /** * Access token * * @var \League\OAuth2\Server\Entity\AccessTokenEntity */ protected $accessToken; /** * Refresh token * * @var \League\OAuth2\Server\Entity\RefreshTokenEntity */ protected $refreshToken; /** * Session scopes * * @var \Symfony\Component\HttpFoundation\ParameterBag */ protected $scopes; /** * Authorization or resource server * * @var \League\OAuth2\Server\AuthorizationServer|\League\OAuth2\Server\ResourceServer */ protected $server; /** * __construct * * @param \League\OAuth2\Server\AbstractServer $server * * @return self */ public function __construct(AbstractServer $server) { $this->server = $server; return $this; } /** * Set the session identifier * * @param string $id * * @return self */ public function setId($id) { $this->id = $id; return $this; } /** * Return the session identifier * * @return string */ public function getId() { return $this->id; } /** * Associate a scope * * @param \League\OAuth2\Server\Entity\ScopeEntity $scope * * @return self */ public function associateScope(ScopeEntity $scope) { if (!isset($this->scopes[$scope->getId()])) { $this->scopes[$scope->getId()] = $scope; } return $this; } /** * Check if access token has an associated scope * * @param string $scope Scope to check * * @return bool */ public function hasScope($scope) { if ($this->scopes === null) { $this->getScopes(); } return isset($this->scopes[$scope]); } /** * Return all scopes associated with the session * * @return \League\OAuth2\Server\Entity\ScopeEntity[] */ public function getScopes() { if ($this->scopes === null) { $this->scopes = $this->formatScopes($this->server->getSessionStorage()->getScopes($this)); } return $this->scopes; } /** * Format the local scopes array * * @param \League\OAuth2\Server\Entity\Scope[] * * @return array */ private function formatScopes($unformatted = []) { $scopes = []; if (is_array($unformatted)) { foreach ($unformatted as $scope) { if ($scope instanceof ScopeEntity) { $scopes[$scope->getId()] = $scope; } } } return $scopes; } /** * Associate an access token with the session * * @param \League\OAuth2\Server\Entity\AccessTokenEntity $accessToken * * @return self */ public function associateAccessToken(AccessTokenEntity $accessToken) { $this->accessToken = $accessToken; return $this; } /** * Associate a refresh token with the session * * @param \League\OAuth2\Server\Entity\RefreshTokenEntity $refreshToken * * @return self */ public function associateRefreshToken(RefreshTokenEntity $refreshToken) { $this->refreshToken = $refreshToken; return $this; } /** * Associate a client with the session * * @param \League\OAuth2\Server\Entity\ClientEntity $client The client * * @return self */ public function associateClient(ClientEntity $client) { $this->client = $client; return $this; } /** * Return the session client * * @return \League\OAuth2\Server\Entity\ClientEntity */ public function getClient() { if ($this->client instanceof ClientEntity) { return $this->client; } $this->client = $this->server->getClientStorage()->getBySession($this); return $this->client; } /** * Set the session owner * * @param string $type The type of the owner (e.g. user, app) * @param string $id The identifier of the owner * * @return self */ public function setOwner($type, $id) { $this->ownerType = $type; $this->ownerId = $id; $this->server->getEventEmitter()->emit(new SessionOwnerEvent($this)); return $this; } /** * Return session owner identifier * * @return string */ public function getOwnerId() { return $this->ownerId; } /** * Return session owner type * * @return string */ public function getOwnerType() { return $this->ownerType; } /** * Save the session * * @return void */ public function save() { // Save the session and get an identifier $id = $this->server->getSessionStorage()->create( $this->getOwnerType(), $this->getOwnerId(), $this->getClient()->getId(), $this->getClient()->getRedirectUri() ); $this->setId($id); // Associate the scope with the session foreach ($this->getScopes() as $scope) { $this->server->getSessionStorage()->associateScope($this, $scope); } } } oauth2-server/src/Entity/AccessTokenEntity.php 0000644 00000004071 14716425166 0015443 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Entity; /** * Access token entity class */ class AccessTokenEntity extends AbstractTokenEntity { /** * Get session * * @return \League\OAuth2\Server\Entity\SessionEntity */ public function getSession() { if ($this->session instanceof SessionEntity) { return $this->session; } $this->session = $this->server->getSessionStorage()->getByAccessToken($this); return $this->session; } /** * Check if access token has an associated scope * * @param string $scope Scope to check * * @return bool */ public function hasScope($scope) { if ($this->scopes === null) { $this->getScopes(); } return isset($this->scopes[$scope]); } /** * Return all scopes associated with the access token * * @return \League\OAuth2\Server\Entity\ScopeEntity[] */ public function getScopes() { if ($this->scopes === null) { $this->scopes = $this->formatScopes( $this->server->getAccessTokenStorage()->getScopes($this) ); } return $this->scopes; } /** * {@inheritdoc} */ public function save() { $this->server->getAccessTokenStorage()->create( $this->getId(), $this->getExpireTime(), $this->getSession()->getId() ); // Associate the scope with the token foreach ($this->getScopes() as $scope) { $this->server->getAccessTokenStorage()->associateScope($this, $scope); } return $this; } /** * {@inheritdoc} */ public function expire() { $this->server->getAccessTokenStorage()->delete($this); } } oauth2-server/src/error_log; 0000644 00000052203 14716425166 0012067 0 ustar 00 [11-Sep-2023 20:15:11 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [29-Sep-2023 12:34:21 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [29-Sep-2023 12:34:24 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [29-Sep-2023 15:49:24 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [29-Sep-2023 15:50:35 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [30-Sep-2023 18:12:01 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [30-Sep-2023 18:12:04 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [30-Sep-2023 19:35:32 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [30-Sep-2023 19:35:37 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [17-Nov-2023 21:24:00 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [19-Nov-2023 13:28:21 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [19-Nov-2023 22:59:44 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [19-Nov-2023 22:59:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [21-Nov-2023 04:09:09 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [21-Nov-2023 04:09:16 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [22-Nov-2023 05:00:25 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [22-Nov-2023 05:00:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [23-Nov-2023 03:01:03 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [23-Nov-2023 03:01:09 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [11-Jan-2024 06:13:06 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [21-Jan-2024 09:43:42 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [25-Feb-2024 10:15:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [15-Mar-2024 04:09:14 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [15-Mar-2024 10:11:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [23-Mar-2024 11:33:47 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [02-Apr-2024 00:01:57 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [02-Apr-2024 03:54:18 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [28-Apr-2024 16:51:05 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [04-May-2024 22:10:00 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [04-May-2024 22:10:08 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [05-May-2024 00:13:43 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [05-May-2024 01:06:20 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [05-May-2024 08:06:19 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [05-May-2024 08:06:28 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [05-May-2024 18:17:41 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [05-May-2024 18:17:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [14-May-2024 03:09:12 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [14-May-2024 18:35:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [14-May-2024 18:35:44 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [16-May-2024 12:13:23 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [17-May-2024 10:08:59 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [17-May-2024 22:56:10 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [04-Jun-2024 06:35:37 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [19-Jun-2024 00:20:57 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [19-Jun-2024 00:21:05 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [19-Jun-2024 07:22:41 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [19-Jun-2024 07:22:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [19-Jun-2024 22:07:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [19-Jun-2024 22:07:57 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [20-Jun-2024 06:21:21 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [27-Jun-2024 02:57:31 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [28-Jun-2024 02:55:34 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [02-Jul-2024 08:44:27 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [08-Jul-2024 13:46:29 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [09-Jul-2024 01:56:55 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [13-Jul-2024 00:21:35 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [17-Jul-2024 21:37:16 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [19-Jul-2024 01:08:41 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [20-Jul-2024 07:54:15 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [22-Jul-2024 16:42:12 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [22-Jul-2024 16:42:20 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [24-Jul-2024 06:37:07 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [27-Jul-2024 01:09:31 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [30-Jul-2024 04:57:43 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [03-Aug-2024 03:29:25 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [03-Aug-2024 23:05:56 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [05-Aug-2024 05:29:38 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [07-Aug-2024 13:48:30 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [13-Aug-2024 23:58:31 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [15-Aug-2024 05:15:11 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [29-Aug-2024 20:38:45 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [01-Sep-2024 20:20:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [01-Sep-2024 20:20:57 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [02-Sep-2024 19:31:12 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [07-Sep-2024 06:22:21 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [07-Sep-2024 06:22:29 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [07-Sep-2024 06:27:37 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [07-Sep-2024 06:27:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [08-Sep-2024 01:55:32 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [09-Sep-2024 13:45:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [11-Sep-2024 20:12:32 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [11-Sep-2024 20:12:40 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [18-Sep-2024 04:22:33 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [20-Sep-2024 17:40:45 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [24-Sep-2024 09:36:35 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [25-Sep-2024 07:49:24 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [01-Oct-2024 23:46:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [05-Oct-2024 09:10:39 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [12-Oct-2024 01:33:42 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [12-Oct-2024 16:19:42 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [15-Oct-2024 03:06:25 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [18-Oct-2024 12:24:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [18-Oct-2024 12:27:34 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [23-Oct-2024 14:03:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [31-Oct-2024 06:23:08 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [31-Oct-2024 11:32:42 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [31-Oct-2024 11:32:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [04-Nov-2024 13:14:58 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 [09-Nov-2024 01:18:07 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/ResourceServer.php on line 27 [09-Nov-2024 01:34:27 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\AbstractServer' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/AuthorizationServer.php on line 20 oauth2-server/src/ResourceServer.php 0000644 00000011505 14716425166 0013546 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server; use League\OAuth2\Server\Entity\AccessTokenEntity; use League\OAuth2\Server\Exception\AccessDeniedException; use League\OAuth2\Server\Exception\InvalidRequestException; use League\OAuth2\Server\Storage\AccessTokenInterface; use League\OAuth2\Server\Storage\ClientInterface; use League\OAuth2\Server\Storage\ScopeInterface; use League\OAuth2\Server\Storage\SessionInterface; use League\OAuth2\Server\TokenType\Bearer; use League\OAuth2\Server\TokenType\MAC; /** * OAuth 2.0 Resource Server */ class ResourceServer extends AbstractServer { /** * The access token * * @var \League\OAuth2\Server\Entity\AccessTokenEntity */ protected $accessToken; /** * The query string key which is used by clients to present the access token (default: access_token) * * @var string */ protected $tokenKey = 'access_token'; /** * Initialise the resource server * * @param \League\OAuth2\Server\Storage\SessionInterface $sessionStorage * @param \League\OAuth2\Server\Storage\AccessTokenInterface $accessTokenStorage * @param \League\OAuth2\Server\Storage\ClientInterface $clientStorage * @param \League\OAuth2\Server\Storage\ScopeInterface $scopeStorage * * @return self */ public function __construct( SessionInterface $sessionStorage, AccessTokenInterface $accessTokenStorage, ClientInterface $clientStorage, ScopeInterface $scopeStorage ) { $this->setSessionStorage($sessionStorage); $this->setAccessTokenStorage($accessTokenStorage); $this->setClientStorage($clientStorage); $this->setScopeStorage($scopeStorage); // Set Bearer as the default token type $this->setTokenType(new Bearer()); parent::__construct(); return $this; } /** * Sets the query string key for the access token. * * @param string $key The new query string key * * @return self */ public function setIdKey($key) { $this->tokenKey = $key; return $this; } /** * Gets the access token * * @return \League\OAuth2\Server\Entity\AccessTokenEntity */ public function getAccessToken() { return $this->accessToken; } /** * Checks if the access token is valid or not * * @param bool $headerOnly Limit Access Token to Authorization header * @param \League\OAuth2\Server\Entity\AccessTokenEntity|null $accessToken Access Token * * @throws \League\OAuth2\Server\Exception\AccessDeniedException * @throws \League\OAuth2\Server\Exception\InvalidRequestException * * @return bool */ public function isValidRequest($headerOnly = true, $accessToken = null) { $accessTokenString = ($accessToken !== null) ? $accessToken : $this->determineAccessToken($headerOnly); // Set the access token $this->accessToken = $this->getAccessTokenStorage()->get($accessTokenString); // Ensure the access token exists if (!$this->accessToken instanceof AccessTokenEntity) { throw new AccessDeniedException(); } // Check the access token hasn't expired // Ensure the auth code hasn't expired if ($this->accessToken->isExpired() === true) { throw new AccessDeniedException(); } return true; } /** * Reads in the access token from the headers * * @param bool $headerOnly Limit Access Token to Authorization header * * @throws \League\OAuth2\Server\Exception\InvalidRequestException Thrown if there is no access token presented * * @return string */ public function determineAccessToken($headerOnly = false) { $authHeader = $this->getRequest()->headers->get('Authorization'); if (!empty($authHeader)) { $accessToken = $this->getTokenType()->determineAccessTokenInHeader($this->getRequest()); } elseif ($headerOnly === false && (! $this->getTokenType() instanceof MAC)) { $accessToken = ($this->getRequest()->server->get('REQUEST_METHOD') === 'GET') ? $this->getRequest()->query->get($this->tokenKey) : $this->getRequest()->request->get($this->tokenKey); } if (empty($accessToken)) { throw new InvalidRequestException('access token'); } return $accessToken; } } oauth2-server/src/Event/error_log; 0000644 00000065636 14716425166 0013166 0 ustar 00 [01-Oct-2023 14:53:09 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [01-Oct-2023 14:53:10 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [01-Oct-2023 14:53:11 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [01-Oct-2023 17:48:59 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [01-Oct-2023 17:49:00 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [01-Oct-2023 17:49:03 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [12-Oct-2023 15:57:26 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [16-Nov-2023 03:26:44 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [21-Nov-2023 23:07:42 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [22-Nov-2023 23:13:56 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [22-Nov-2023 23:13:58 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [22-Nov-2023 23:14:01 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [24-Nov-2023 09:30:37 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [24-Nov-2023 09:30:44 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [24-Nov-2023 09:30:46 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [25-Nov-2023 13:43:20 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [25-Nov-2023 13:43:35 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [25-Nov-2023 13:43:37 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [27-Nov-2023 15:33:03 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [27-Nov-2023 15:33:10 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [27-Nov-2023 15:33:14 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [01-Jan-2024 09:49:00 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [15-Jan-2024 14:23:30 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [21-Jan-2024 15:36:13 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [25-Feb-2024 03:07:33 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [30-Mar-2024 13:26:03 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [04-Apr-2024 06:16:05 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [04-Apr-2024 08:30:49 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [04-Apr-2024 10:06:00 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [05-Apr-2024 08:53:28 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [06-Apr-2024 14:36:59 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [07-Apr-2024 03:40:22 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [07-Apr-2024 04:12:04 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [03-May-2024 10:09:42 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [04-May-2024 23:32:11 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [04-May-2024 23:56:35 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [05-May-2024 00:03:28 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [05-May-2024 09:28:00 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [05-May-2024 09:52:12 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [05-May-2024 09:58:56 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [05-May-2024 19:26:56 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [05-May-2024 19:50:04 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [05-May-2024 19:56:36 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [14-May-2024 19:16:13 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [14-May-2024 19:21:18 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [14-May-2024 19:22:56 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [17-May-2024 17:18:46 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [18-May-2024 00:21:55 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [18-May-2024 10:38:09 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [18-May-2024 15:26:05 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [18-May-2024 21:04:15 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [19-May-2024 19:37:34 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [02-Jun-2024 00:53:58 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [11-Jun-2024 10:37:13 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [19-Jun-2024 00:25:46 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [19-Jun-2024 00:27:01 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [19-Jun-2024 00:27:45 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [19-Jun-2024 07:27:37 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [19-Jun-2024 07:29:01 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [19-Jun-2024 07:29:45 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [19-Jun-2024 22:12:45 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [19-Jun-2024 22:14:09 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [19-Jun-2024 22:14:53 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [21-Jun-2024 05:21:24 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [21-Jun-2024 16:32:58 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [21-Jun-2024 23:37:25 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [02-Jul-2024 17:47:43 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [03-Jul-2024 05:37:02 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [18-Jul-2024 06:11:40 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [22-Jul-2024 18:04:28 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [22-Jul-2024 18:26:12 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [22-Jul-2024 18:32:44 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [22-Jul-2024 21:40:05 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [25-Jul-2024 17:38:10 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [28-Jul-2024 20:40:20 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [28-Jul-2024 22:12:53 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [03-Aug-2024 21:36:18 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [09-Aug-2024 10:46:32 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [09-Aug-2024 18:11:02 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [13-Aug-2024 17:01:12 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [23-Aug-2024 01:56:07 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [24-Aug-2024 06:27:18 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [25-Aug-2024 03:15:36 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [30-Aug-2024 11:33:37 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [01-Sep-2024 03:12:16 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [01-Sep-2024 21:43:01 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [01-Sep-2024 22:07:25 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [01-Sep-2024 22:14:17 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [02-Sep-2024 16:43:08 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [04-Sep-2024 07:37:24 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [05-Sep-2024 04:47:21 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [10-Sep-2024 15:13:20 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [10-Sep-2024 15:21:08 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [10-Sep-2024 15:24:00 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [11-Sep-2024 21:36:41 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [11-Sep-2024 21:57:20 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [11-Sep-2024 22:02:28 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [13-Sep-2024 10:20:06 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [13-Sep-2024 10:24:10 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [13-Sep-2024 10:25:26 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [14-Sep-2024 22:46:46 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [15-Sep-2024 04:04:11 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [15-Sep-2024 09:51:07 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [16-Sep-2024 09:20:01 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [16-Sep-2024 15:47:02 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [03-Oct-2024 02:45:28 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [07-Oct-2024 10:10:47 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [08-Oct-2024 13:49:25 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [08-Oct-2024 21:02:32 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [11-Oct-2024 10:38:54 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [14-Oct-2024 09:23:16 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [18-Oct-2024 14:21:49 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [18-Oct-2024 14:25:53 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [18-Oct-2024 14:27:45 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [23-Oct-2024 16:12:28 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [25-Oct-2024 06:03:06 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [31-Oct-2024 12:31:30 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [31-Oct-2024 12:45:58 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [31-Oct-2024 12:50:09 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [02-Nov-2024 03:57:22 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [09-Nov-2024 03:20:27 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 [09-Nov-2024 03:34:15 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/UserAuthenticationFailedEvent.php on line 17 [09-Nov-2024 03:37:23 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/ClientAuthenticationFailedEvent.php on line 17 [11-Nov-2024 05:50:04 America/Fortaleza] PHP Fatal error: Class 'League\Event\AbstractEvent' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Event/SessionOwnerEvent.php on line 17 oauth2-server/src/Event/ClientAuthenticationFailedEvent.php 0000644 00000002175 14716425166 0020101 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Event; use League\Event\AbstractEvent; use Symfony\Component\HttpFoundation\Request; class ClientAuthenticationFailedEvent extends AbstractEvent { /** * Request * * @var \Symfony\Component\HttpFoundation\Request */ private $request; /** * Init the event with a request * * @param \Symfony\Component\HttpFoundation\Request $request */ public function __construct(Request $request) { $this->request = $request; } /** * The name of the event * * @return string */ public function getName() { return 'error.auth.client'; } /** * Return request * * @return \Symfony\Component\HttpFoundation\Request */ public function getRequest() { return $this->request; } } oauth2-server/src/Event/UserAuthenticationFailedEvent.php 0000644 00000002167 14716425166 0017602 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Event; use League\Event\AbstractEvent; use Symfony\Component\HttpFoundation\Request; class UserAuthenticationFailedEvent extends AbstractEvent { /** * Request * * @var \Symfony\Component\HttpFoundation\Request */ private $request; /** * Init the event with a request * * @param \Symfony\Component\HttpFoundation\Request $request */ public function __construct(Request $request) { $this->request = $request; } /** * The name of the event * * @return string */ public function getName() { return 'error.auth.user'; } /** * Return request * * @return \Symfony\Component\HttpFoundation\Request */ public function getRequest() { return $this->request; } } oauth2-server/src/Event/SessionOwnerEvent.php 0000644 00000002155 14716425166 0015312 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Event; use League\Event\AbstractEvent; use League\OAuth2\Server\Entity\SessionEntity; class SessionOwnerEvent extends AbstractEvent { /** * Session entity * * @var \League\OAuth2\Server\Entity\SessionEntity */ private $session; /** * Init the event with a session * * @param \League\OAuth2\Server\Entity\SessionEntity $session */ public function __construct(SessionEntity $session) { $this->session = $session; } /** * The name of the event * * @return string */ public function getName() { return 'session.owner'; } /** * Return session * * @return \League\OAuth2\Server\Entity\SessionEntity */ public function getSession() { return $this->session; } } oauth2-server/src/TokenType/AbstractTokenType.php 0000644 00000002576 14716425166 0016130 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\TokenType; use League\OAuth2\Server\AbstractServer; use League\OAuth2\Server\Entity\SessionEntity; abstract class AbstractTokenType { /** * Response array * * @var array */ protected $response = []; /** * Server * * @var \League\OAuth2\Server\AbstractServer $server */ protected $server; /** * Server * * @var \League\OAuth2\Server\Entity\SessionEntity $session */ protected $session; /** * {@inheritdoc} */ public function setServer(AbstractServer $server) { $this->server = $server; return $this; } /** * {@inheritdoc} */ public function setSession(SessionEntity $session) { $this->session = $session; return $this; } /** * {@inheritdoc} */ public function setParam($key, $value) { $this->response[$key] = $value; } /** * {@inheritdoc} */ public function getParam($key) { return isset($this->response[$key]) ? $this->response[$key] : null; } } oauth2-server/src/TokenType/TokenTypeInterface.php 0000644 00000002761 14716425166 0016261 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\TokenType; use League\OAuth2\Server\AbstractServer; use League\OAuth2\Server\Entity\SessionEntity; use Symfony\Component\HttpFoundation\Request; interface TokenTypeInterface { /** * Generate a response * * @return array */ public function generateResponse(); /** * Set the server * * @param \League\OAuth2\Server\AbstractServer $server * * @return self */ public function setServer(AbstractServer $server); /** * Set a key/value response pair * * @param string $key * @param mixed $value */ public function setParam($key, $value); /** * Get a key from the response array * * @param string $key * * @return mixed */ public function getParam($key); /** * @param \League\OAuth2\Server\Entity\SessionEntity $session * * @return self */ public function setSession(SessionEntity $session); /** * Determine the access token in the authorization header * * @param \Symfony\Component\HttpFoundation\Request $request * * @return string */ public function determineAccessTokenInHeader(Request $request); } oauth2-server/src/TokenType/Bearer.php 0000644 00000002420 14716425166 0013706 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\TokenType; use Symfony\Component\HttpFoundation\Request; class Bearer extends AbstractTokenType implements TokenTypeInterface { /** * {@inheritdoc} */ public function generateResponse() { $return = [ 'access_token' => $this->getParam('access_token'), 'token_type' => 'Bearer', 'expires_in' => $this->getParam('expires_in'), ]; if (!is_null($this->getParam('refresh_token'))) { $return['refresh_token'] = $this->getParam('refresh_token'); } return $return; } /** * {@inheritdoc} */ public function determineAccessTokenInHeader(Request $request) { if ($request->headers->has('Authorization') === false) { return; } $header = $request->headers->get('Authorization'); if (substr($header, 0, 7) !== 'Bearer ') { return; } return trim(substr($header, 7)); } } oauth2-server/src/TokenType/MAC.php 0000644 00000010573 14716425166 0013116 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\TokenType; use League\OAuth2\Server\Util\SecureKey; use Symfony\Component\HttpFoundation\ParameterBag; use Symfony\Component\HttpFoundation\Request; /** * MAC Token Type */ class MAC extends AbstractTokenType implements TokenTypeInterface { /** * {@inheritdoc} */ public function generateResponse() { $macKey = SecureKey::generate(); $this->server->getMacStorage()->create($macKey, $this->getParam('access_token')); $response = [ 'access_token' => $this->getParam('access_token'), 'token_type' => 'mac', 'expires_in' => $this->getParam('expires_in'), 'mac_key' => $macKey, 'mac_algorithm' => 'hmac-sha-256', ]; if (!is_null($this->getParam('refresh_token'))) { $response['refresh_token'] = $this->getParam('refresh_token'); } return $response; } /** * {@inheritdoc} */ public function determineAccessTokenInHeader(Request $request) { if ($request->headers->has('Authorization') === false) { return; } $header = $request->headers->get('Authorization'); if (substr($header, 0, 4) !== 'MAC ') { return; } // Find all the parameters expressed in the header $paramsRaw = explode(',', substr($header, 4)); $params = new ParameterBag(); array_map(function ($param) use (&$params) { $param = trim($param); preg_match_all('/([a-zA-Z]*)="([\w=\/+]*)"/', $param, $matches); // @codeCoverageIgnoreStart if (count($matches) !== 3) { return; } // @codeCoverageIgnoreEnd $key = reset($matches[1]); $value = trim(reset($matches[2])); if (empty($value)) { return; } $params->set($key, $value); }, $paramsRaw); // Validate parameters if ($params->has('id') === false || $params->has('ts') === false || $params->has('nonce') === false || $params->has('mac') === false) { return; } if (abs($params->get('ts') - time()) > 300) { return; } $accessToken = $params->get('id'); $timestamp = (int) $params->get('ts'); $nonce = $params->get('nonce'); $signature = $params->get('mac'); // Try to find the MAC key for the access token $macKey = $this->server->getMacStorage()->getByAccessToken($accessToken); if ($macKey === null) { return; } // Calculate and compare the signature $calculatedSignatureParts = [ $timestamp, $nonce, strtoupper($request->getMethod()), $request->getRequestUri(), $request->getHost(), $request->getPort(), ]; if ($params->has('ext')) { $calculatedSignatureParts[] = $params->get('ext'); } $calculatedSignature = base64_encode( hash_hmac( 'sha256', implode("\n", $calculatedSignatureParts), $macKey, true // raw_output: outputs raw binary data ) ); // Return the access token if the signature matches return ($this->hash_equals($calculatedSignature, $signature)) ? $accessToken : null; } /** * Prevent timing attack * @param string $knownString * @param string $userString * @return bool */ private function hash_equals($knownString, $userString) { if (function_exists('\hash_equals')) { return \hash_equals($knownString, $userString); } if (strlen($knownString) !== strlen($userString)) { return false; } $len = strlen($knownString); $result = 0; for ($i = 0; $i < $len; $i++) { $result |= (ord($knownString[$i]) ^ ord($userString[$i])); } // They are only identical strings if $result is exactly 0... return 0 === $result; } } oauth2-server/src/TokenType/error_log; 0000644 00000051233 14716425166 0014013 0 ustar 00 [17-Sep-2023 12:42:11 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [21-Sep-2023 11:02:44 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [01-Oct-2023 14:54:25 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [01-Oct-2023 14:54:26 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [01-Oct-2023 17:49:24 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [01-Oct-2023 17:49:25 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [21-Nov-2023 22:37:15 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [21-Nov-2023 22:37:18 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [24-Nov-2023 17:49:24 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [24-Nov-2023 17:49:26 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [25-Nov-2023 01:57:21 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [25-Nov-2023 01:57:23 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [26-Nov-2023 10:55:45 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [26-Nov-2023 10:56:02 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [03-Dec-2023 04:49:31 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [14-Jan-2024 18:36:10 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [22-Jan-2024 13:38:17 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [01-Apr-2024 03:20:16 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [04-Apr-2024 10:43:27 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [04-Apr-2024 12:33:28 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [08-Apr-2024 00:54:01 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [08-Apr-2024 02:58:51 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [09-Apr-2024 06:28:47 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [04-May-2024 22:34:00 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [04-May-2024 22:49:52 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [05-May-2024 00:46:32 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [05-May-2024 08:30:08 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [05-May-2024 08:45:52 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [05-May-2024 08:52:57 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [05-May-2024 18:40:13 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [05-May-2024 18:55:56 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [14-May-2024 18:55:20 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [14-May-2024 18:58:56 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [17-May-2024 13:17:42 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [17-May-2024 18:50:48 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [19-May-2024 12:32:10 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [20-May-2024 19:21:42 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [24-May-2024 00:07:28 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [24-May-2024 12:38:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [19-Jun-2024 00:21:57 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [19-Jun-2024 00:24:09 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [19-Jun-2024 07:23:57 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [19-Jun-2024 07:26:05 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [19-Jun-2024 22:09:05 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [19-Jun-2024 22:11:13 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [27-Jun-2024 04:39:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [28-Jun-2024 01:08:21 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [02-Jul-2024 23:52:47 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [04-Jul-2024 03:48:35 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [18-Jul-2024 20:59:04 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [18-Jul-2024 23:49:07 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [22-Jul-2024 17:09:48 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [22-Jul-2024 17:25:04 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [26-Jul-2024 05:01:58 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [26-Jul-2024 22:27:01 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [27-Jul-2024 12:56:50 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [29-Jul-2024 15:02:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [01-Aug-2024 04:45:30 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [03-Aug-2024 09:56:43 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [04-Aug-2024 05:10:19 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [07-Aug-2024 09:51:03 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [09-Aug-2024 16:54:57 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [09-Aug-2024 22:49:06 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [20-Aug-2024 13:45:23 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [21-Aug-2024 00:49:15 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [22-Aug-2024 00:55:14 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [01-Sep-2024 20:44:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [01-Sep-2024 21:00:41 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [07-Sep-2024 09:16:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [07-Sep-2024 09:17:01 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [09-Sep-2024 11:41:00 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [09-Sep-2024 11:56:45 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [10-Sep-2024 06:56:24 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [10-Sep-2024 06:56:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [11-Sep-2024 20:44:24 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [11-Sep-2024 20:59:00 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [15-Sep-2024 20:37:23 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [15-Sep-2024 23:51:05 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [17-Sep-2024 06:21:34 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [20-Sep-2024 00:26:30 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [26-Sep-2024 16:34:17 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [02-Oct-2024 22:03:19 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [12-Oct-2024 16:53:08 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [13-Oct-2024 11:41:59 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [18-Oct-2024 14:22:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [18-Oct-2024 14:28:32 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [18-Oct-2024 16:19:10 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [18-Oct-2024 22:28:06 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [25-Oct-2024 12:17:47 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [31-Oct-2024 11:57:34 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [31-Oct-2024 12:03:54 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 [09-Nov-2024 03:05:19 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/MAC.php on line 21 [09-Nov-2024 03:10:11 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\TokenType\AbstractTokenType' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/TokenType/Bearer.php on line 16 oauth2-server/src/AbstractServer.php 0000644 00000017433 14716425166 0013530 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server; use League\Event\Emitter; use League\OAuth2\Server\Storage\AccessTokenInterface; use League\OAuth2\Server\Storage\AuthCodeInterface; use League\OAuth2\Server\Storage\ClientInterface; use League\OAuth2\Server\Storage\MacTokenInterface; use League\OAuth2\Server\Storage\RefreshTokenInterface; use League\OAuth2\Server\Storage\ScopeInterface; use League\OAuth2\Server\Storage\SessionInterface; use League\OAuth2\Server\TokenType\TokenTypeInterface; use Symfony\Component\HttpFoundation\Request; /** * OAuth 2.0 Resource Server */ abstract class AbstractServer { /** * The request object * * @var \Symfony\Component\HttpFoundation\Request */ protected $request; /** * Session storage * * @var \League\OAuth2\Server\Storage\SessionInterface */ protected $sessionStorage; /** * Access token storage * * @var \League\OAuth2\Server\Storage\AccessTokenInterface */ protected $accessTokenStorage; /** * Refresh token storage * * @var \League\OAuth2\Server\Storage\RefreshTokenInterface */ protected $refreshTokenStorage; /** * Auth code storage * * @var \League\OAuth2\Server\Storage\AuthCodeInterface */ protected $authCodeStorage; /** * Scope storage * * @var \League\OAuth2\Server\Storage\ScopeInterface */ protected $scopeStorage; /** * Client storage * * @var \League\OAuth2\Server\Storage\ClientInterface */ protected $clientStorage; /** * @var \League\OAuth2\Server\Storage\MacTokenInterface */ protected $macStorage; /** * Token type * * @var \League\OAuth2\Server\TokenType\TokenTypeInterface */ protected $tokenType; /** * Event emitter * * @var \League\Event\Emitter */ protected $eventEmitter; /** * Abstract server constructor */ public function __construct() { $this->setEventEmitter(); } /** * Set an event emitter * * @param object $emitter Event emitter object */ public function setEventEmitter($emitter = null) { if ($emitter === null) { $this->eventEmitter = new Emitter(); } else { $this->eventEmitter = $emitter; } } /** * Add an event listener to the event emitter * * @param string $eventName Event name * @param callable $listener Callable function or method * @param int $priority Priority of event listener */ public function addEventListener($eventName, callable $listener, $priority = Emitter::P_NORMAL) { $this->eventEmitter->addListener($eventName, $listener, $priority); } /** * Returns the event emitter * * @return \League\Event\Emitter */ public function getEventEmitter() { return $this->eventEmitter; } /** * Sets the Request Object * * @param \Symfony\Component\HttpFoundation\Request The Request Object * * @return self */ public function setRequest($request) { $this->request = $request; return $this; } /** * Gets the Request object. It will create one from the globals if one is not set. * * @return \Symfony\Component\HttpFoundation\Request */ public function getRequest() { if ($this->request === null) { $this->request = Request::createFromGlobals(); } return $this->request; } /** * Set the client storage * * @param \League\OAuth2\Server\Storage\ClientInterface $storage * * @return self */ public function setClientStorage(ClientInterface $storage) { $storage->setServer($this); $this->clientStorage = $storage; return $this; } /** * Set the session storage * * @param \League\OAuth2\Server\Storage\SessionInterface $storage * * @return self */ public function setSessionStorage(SessionInterface $storage) { $storage->setServer($this); $this->sessionStorage = $storage; return $this; } /** * Set the access token storage * * @param \League\OAuth2\Server\Storage\AccessTokenInterface $storage * * @return self */ public function setAccessTokenStorage(AccessTokenInterface $storage) { $storage->setServer($this); $this->accessTokenStorage = $storage; return $this; } /** * Set the refresh token storage * * @param \League\OAuth2\Server\Storage\RefreshTokenInterface $storage * * @return self */ public function setRefreshTokenStorage(RefreshTokenInterface $storage) { $storage->setServer($this); $this->refreshTokenStorage = $storage; return $this; } /** * Set the auth code storage * * @param \League\OAuth2\Server\Storage\AuthCodeInterface $storage * * @return self */ public function setAuthCodeStorage(AuthCodeInterface $storage) { $storage->setServer($this); $this->authCodeStorage = $storage; return $this; } /** * Set the scope storage * * @param \League\OAuth2\Server\Storage\ScopeInterface $storage * * @return self */ public function setScopeStorage(ScopeInterface $storage) { $storage->setServer($this); $this->scopeStorage = $storage; return $this; } /** * Return the client storage * * @return \League\OAuth2\Server\Storage\ClientInterface */ public function getClientStorage() { return $this->clientStorage; } /** * Return the scope storage * * @return \League\OAuth2\Server\Storage\ScopeInterface */ public function getScopeStorage() { return $this->scopeStorage; } /** * Return the session storage * * @return \League\OAuth2\Server\Storage\SessionInterface */ public function getSessionStorage() { return $this->sessionStorage; } /** * Return the refresh token storage * * @return \League\OAuth2\Server\Storage\RefreshTokenInterface */ public function getRefreshTokenStorage() { return $this->refreshTokenStorage; } /** * Return the access token storage * * @return \League\OAuth2\Server\Storage\AccessTokenInterface */ public function getAccessTokenStorage() { return $this->accessTokenStorage; } /** * Return the auth code storage * * @return \League\OAuth2\Server\Storage\AuthCodeInterface */ public function getAuthCodeStorage() { return $this->authCodeStorage; } /** * Set the access token type * * @param TokenTypeInterface $tokenType The token type * * @return void */ public function setTokenType(TokenTypeInterface $tokenType) { $tokenType->setServer($this); $this->tokenType = $tokenType; } /** * Get the access token type * * @return TokenTypeInterface */ public function getTokenType() { return $this->tokenType; } /** * @return MacTokenInterface */ public function getMacStorage() { return $this->macStorage; } /** * @param MacTokenInterface $macStorage */ public function setMacStorage(MacTokenInterface $macStorage) { $this->macStorage = $macStorage; } } oauth2-server/src/Exception/UnsupportedGrantTypeException.php 0000644 00000001624 14716425166 0020574 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Exception; /** * Exception class */ class UnsupportedGrantTypeException extends OAuthException { /** * {@inheritdoc} */ public $httpStatusCode = 400; /** * {@inheritdoc} */ public $errorType = 'unsupported_grant_type'; /** * {@inheritdoc} */ public function __construct($parameter) { $this->parameter = $parameter; parent::__construct( sprintf( 'The authorization grant type "%s" is not supported by the authorization server.', $parameter ) ); } } oauth2-server/src/Exception/InvalidRefreshException.php 0000644 00000001312 14716425166 0017305 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Exception; /** * Exception class */ class InvalidRefreshException extends OAuthException { /** * {@inheritdoc} */ public $httpStatusCode = 400; /** * {@inheritdoc} */ public $errorType = 'invalid_request'; /** * {@inheritdoc} */ public function __construct() { parent::__construct('The refresh token is invalid.'); } } oauth2-server/src/Exception/AccessDeniedException.php 0000644 00000001345 14716425166 0016720 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Exception; /** * Exception class */ class AccessDeniedException extends OAuthException { /** * {@inheritdoc} */ public $httpStatusCode = 401; /** * {@inheritdoc} */ public $errorType = 'access_denied'; /** * {@inheritdoc} */ public function __construct() { parent::__construct('The resource owner or authorization server denied the request.'); } } oauth2-server/src/Exception/InvalidCredentialsException.php 0000644 00000001335 14716425166 0020151 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Exception; /** * Exception class */ class InvalidCredentialsException extends OAuthException { /** * {@inheritdoc} */ public $httpStatusCode = 401; /** * {@inheritdoc} */ public $errorType = 'invalid_credentials'; /** * {@inheritdoc} */ public function __construct() { parent::__construct('The user credentials were incorrect.'); } } oauth2-server/src/Exception/error_log; 0000644 00000334436 14716425166 0014040 0 ustar 00 [13-Sep-2023 22:11:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [15-Sep-2023 04:01:40 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [18-Sep-2023 03:37:13 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [18-Sep-2023 06:00:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [21-Sep-2023 19:54:28 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [23-Sep-2023 13:31:43 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [01-Oct-2023 14:54:04 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [01-Oct-2023 14:54:06 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [01-Oct-2023 14:54:07 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [01-Oct-2023 14:54:08 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [01-Oct-2023 14:54:10 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [01-Oct-2023 14:54:11 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [01-Oct-2023 14:54:12 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [01-Oct-2023 14:54:15 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [01-Oct-2023 14:54:16 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [01-Oct-2023 14:54:17 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [01-Oct-2023 14:54:18 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [01-Oct-2023 17:47:57 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [01-Oct-2023 17:47:58 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [01-Oct-2023 17:48:01 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [01-Oct-2023 17:48:02 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [01-Oct-2023 17:48:03 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [01-Oct-2023 17:48:04 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [01-Oct-2023 17:48:06 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [01-Oct-2023 17:48:08 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [01-Oct-2023 17:48:09 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [01-Oct-2023 17:48:11 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [01-Oct-2023 17:48:12 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [13-Oct-2023 22:12:38 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [06-Nov-2023 17:08:02 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [17-Nov-2023 01:12:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [17-Nov-2023 12:44:42 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [18-Nov-2023 01:55:11 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [18-Nov-2023 05:52:16 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [20-Nov-2023 04:01:38 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [23-Nov-2023 11:04:35 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [23-Nov-2023 11:04:37 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [23-Nov-2023 11:04:39 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [23-Nov-2023 11:04:41 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [23-Nov-2023 11:04:43 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [23-Nov-2023 11:04:45 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [23-Nov-2023 11:04:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [23-Nov-2023 11:04:52 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [23-Nov-2023 11:04:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [23-Nov-2023 11:04:56 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [23-Nov-2023 11:05:08 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [24-Nov-2023 11:08:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [24-Nov-2023 11:08:48 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [24-Nov-2023 11:08:50 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [24-Nov-2023 11:08:52 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [24-Nov-2023 11:08:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [24-Nov-2023 11:08:58 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [24-Nov-2023 11:09:01 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [24-Nov-2023 11:09:03 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [24-Nov-2023 11:09:07 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [24-Nov-2023 11:09:09 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [24-Nov-2023 11:09:10 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [26-Nov-2023 10:51:29 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [26-Nov-2023 11:56:12 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [26-Nov-2023 11:56:14 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [26-Nov-2023 11:56:21 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [26-Nov-2023 11:56:22 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [26-Nov-2023 11:56:25 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [26-Nov-2023 11:56:27 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [26-Nov-2023 11:56:28 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [26-Nov-2023 11:56:30 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [26-Nov-2023 11:56:41 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [26-Nov-2023 11:56:50 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [26-Nov-2023 11:56:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [26-Nov-2023 16:53:09 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [27-Nov-2023 16:59:10 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [27-Nov-2023 16:59:11 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [27-Nov-2023 16:59:13 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [27-Nov-2023 16:59:14 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [27-Nov-2023 16:59:16 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [27-Nov-2023 16:59:18 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [27-Nov-2023 16:59:21 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [27-Nov-2023 16:59:25 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [27-Nov-2023 16:59:30 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [27-Nov-2023 16:59:31 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [27-Nov-2023 16:59:33 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [28-Nov-2023 18:09:12 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [30-Dec-2023 02:40:35 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [31-Dec-2023 04:23:54 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [31-Dec-2023 08:41:24 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [02-Jan-2024 07:14:22 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [03-Jan-2024 22:35:28 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [05-Jan-2024 03:08:45 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [05-Jan-2024 06:15:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [10-Jan-2024 03:32:35 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [12-Jan-2024 10:47:12 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [15-Jan-2024 03:22:12 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [19-Jan-2024 15:19:10 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [22-Feb-2024 10:02:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [24-Feb-2024 04:31:18 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [25-Feb-2024 20:00:27 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [04-Mar-2024 10:38:31 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [05-Mar-2024 12:01:48 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [08-Mar-2024 23:01:04 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [15-Mar-2024 22:12:40 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [17-Mar-2024 02:32:10 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/pub[21-Mar-2024 23:23:50 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [27-Mar-2024 18:06:57 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [04-Apr-2024 00:44:28 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [04-Apr-2024 01:39:37 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [04-Apr-2024 02:15:11 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [04-Apr-2024 02:31:32 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [04-Apr-2024 06:19:28 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [04-Apr-2024 07:14:26 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [04-Apr-2024 13:15:29 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [04-Apr-2024 13:19:55 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [04-Apr-2024 14:34:47 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [04-Apr-2024 19:31:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [04-Apr-2024 21:16:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [05-Apr-2024 15:37:21 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [07-Apr-2024 16:06:40 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [07-Apr-2024 16:24:40 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [07-Apr-2024 20:15:52 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [07-Apr-2024 21:31:48 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [07-Apr-2024 23:01:22 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [08-Apr-2024 03:43:22 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [08-Apr-2024 07:18:44 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [08-Apr-2024 11:50:51 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [08-Apr-2024 11:52:17 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [12-Apr-2024 05:01:21 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [12-Apr-2024 05:05:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [27-Apr-2024 10:17:03 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [29-Apr-2024 22:31:31 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [03-May-2024 00:05:20 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [04-May-2024 19:43:11 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [04-May-2024 23:55:04 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [04-May-2024 23:55:08 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [04-May-2024 23:55:12 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [04-May-2024 23:55:15 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [04-May-2024 23:55:20 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [05-May-2024 00:02:40 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [05-May-2024 00:02:45 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [05-May-2024 00:02:48 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [05-May-2024 00:02:52 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [05-May-2024 00:05:55 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [05-May-2024 00:06:44 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [05-May-2024 09:50:40 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [05-May-2024 09:50:44 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [05-May-2024 09:50:48 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [05-May-2024 09:50:52 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [05-May-2024 09:50:56 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [05-May-2024 09:58:08 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [05-May-2024 09:58:11 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [05-May-2024 09:58:16 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [05-May-2024 09:58:20 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [05-May-2024 10:01:23 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [05-May-2024 10:02:11 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [05-May-2024 19:48:32 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [05-May-2024 19:48:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [05-May-2024 19:48:40 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [05-May-2024 19:48:44 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [05-May-2024 19:48:48 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [05-May-2024 19:55:48 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [05-May-2024 19:55:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [05-May-2024 19:55:57 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [05-May-2024 19:56:00 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [05-May-2024 19:57:25 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [05-May-2024 19:58:04 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [08-May-2024 17:34:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [11-May-2024 21:56:02 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [13-May-2024 11:23:43 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [14-May-2024 13:05:50 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [14-May-2024 17:49:10 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [14-May-2024 19:20:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [14-May-2024 19:20:54 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [14-May-2024 19:20:56 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [14-May-2024 19:21:00 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [14-May-2024 19:21:05 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [14-May-2024 19:22:40 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [14-May-2024 19:22:44 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [14-May-2024 19:22:51 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [14-May-2024 19:22:52 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [14-May-2024 19:24:45 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [14-May-2024 19:25:00 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [18-May-2024 09:23:31 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [22-May-2024 06:31:23 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [22-May-2024 07:45:07 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [22-May-2024 09:48:34 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [22-May-2024 14:29:58 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [22-May-2024 17:00:43 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [22-May-2024 17:44:13 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [22-May-2024 23:36:59 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [23-May-2024 07:21:21 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [23-May-2024 10:46:47 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [23-May-2024 22:50:52 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [24-May-2024 07:47:35 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [26-May-2024 04:39:32 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [05-Jun-2024 03:28:34 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [06-Jun-2024 06:02:38 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [06-Jun-2024 15:31:31 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [09-Jun-2024 21:34:10 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [15-Jun-2024 05:34:23 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [18-Jun-2024 17:15:40 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [18-Jun-2024 19:18:43 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [19-Jun-2024 00:26:33 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [19-Jun-2024 00:26:38 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [19-Jun-2024 00:26:42 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [19-Jun-2024 00:26:45 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [19-Jun-2024 00:26:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [19-Jun-2024 00:27:29 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [19-Jun-2024 00:27:34 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [19-Jun-2024 00:27:37 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [19-Jun-2024 00:27:41 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [19-Jun-2024 00:27:50 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [19-Jun-2024 00:27:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [19-Jun-2024 07:28:33 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [19-Jun-2024 07:28:37 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [19-Jun-2024 07:28:41 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [19-Jun-2024 07:28:45 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [19-Jun-2024 07:28:50 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [19-Jun-2024 07:29:29 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [19-Jun-2024 07:29:33 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [19-Jun-2024 07:29:37 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [19-Jun-2024 07:29:41 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [19-Jun-2024 07:29:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [19-Jun-2024 07:29:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [19-Jun-2024 22:13:41 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [19-Jun-2024 22:13:45 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [19-Jun-2024 22:13:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [19-Jun-2024 22:13:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [19-Jun-2024 22:13:57 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [19-Jun-2024 22:14:37 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [19-Jun-2024 22:14:41 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [19-Jun-2024 22:14:45 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [19-Jun-2024 22:14:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [19-Jun-2024 22:14:57 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [19-Jun-2024 22:15:01 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [27-Jun-2024 04:30:15 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [27-Jun-2024 04:32:08 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [27-Jun-2024 07:09:30 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [27-Jun-2024 16:13:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [29-Jun-2024 01:46:32 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [02-Jul-2024 20:06:56 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [02-Jul-2024 21:22:21 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [02-Jul-2024 23:02:38 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [02-Jul-2024 23:19:16 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [03-Jul-2024 00:36:15 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [03-Jul-2024 13:01:52 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [03-Jul-2024 13:29:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [03-Jul-2024 14:54:29 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [03-Jul-2024 22:29:07 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [04-Jul-2024 00:22:48 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [04-Jul-2024 01:52:13 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [08-Jul-2024 20:32:19 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [09-Jul-2024 11:11:56 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [13-Jul-2024 07:31:18 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [14-Jul-2024 02:30:23 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [14-Jul-2024 09:43:20 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [17-Jul-2024 20:00:27 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [20-Jul-2024 04:59:14 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [21-Jul-2024 11:20:41 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [22-Jul-2024 18:24:40 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [22-Jul-2024 18:24:44 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [22-Jul-2024 18:24:48 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [22-Jul-2024 18:24:52 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [22-Jul-2024 18:24:56 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [22-Jul-2024 18:31:56 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [22-Jul-2024 18:32:00 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [22-Jul-2024 18:32:04 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [22-Jul-2024 18:32:08 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [22-Jul-2024 18:35:08 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [22-Jul-2024 18:35:56 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [23-Jul-2024 04:02:14 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [24-Jul-2024 11:50:18 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [26-Jul-2024 07:23:18 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [31-Jul-2024 11:47:09 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [03-Aug-2024 00:39:38 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [03-Aug-2024 10:59:42 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [04-Aug-2024 00:03:12 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [04-Aug-2024 04:26:23 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [05-Aug-2024 20:56:50 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [05-Aug-2024 23:55:34 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [06-Aug-2024 07:10:34 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [09-Aug-2024 08:57:58 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [09-Aug-2024 09:05:02 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [09-Aug-2024 14:27:02 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [09-Aug-2024 15:03:32 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [09-Aug-2024 16:16:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [09-Aug-2024 17:38:13 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [09-Aug-2024 18:25:12 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [09-Aug-2024 21:00:51 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [10-Aug-2024 04:23:55 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [10-Aug-2024 11:36:27 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [10-Aug-2024 12:32:18 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [10-Aug-2024 14:23:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [12-Aug-2024 19:29:04 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [13-Aug-2024 05:01:03 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [14-Aug-2024 18:05:49 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [14-Aug-2024 23:54:31 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [15-Aug-2024 08:40:05 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [15-Aug-2024 09:08:06 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [17-Aug-2024 19:09:01 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [18-Aug-2024 19:44:43 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [19-Aug-2024 21:18:29 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [20-Aug-2024 04:19:23 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [20-Aug-2024 11:34:18 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [20-Aug-2024 21:05:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [21-Aug-2024 08:59:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [27-Aug-2024 09:39:45 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [29-Aug-2024 10:30:54 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [29-Aug-2024 10:47:47 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [29-Aug-2024 22:23:50 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [30-Aug-2024 00:18:05 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [31-Aug-2024 09:20:57 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [01-Sep-2024 22:05:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [01-Sep-2024 22:05:57 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [01-Sep-2024 22:06:01 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [01-Sep-2024 22:06:05 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [01-Sep-2024 22:06:09 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [01-Sep-2024 22:13:29 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [01-Sep-2024 22:13:33 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [01-Sep-2024 22:13:37 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [01-Sep-2024 22:13:41 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [01-Sep-2024 22:16:45 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [01-Sep-2024 22:17:33 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [02-Sep-2024 09:21:34 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [02-Sep-2024 11:29:40 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [04-Sep-2024 11:46:41 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [04-Sep-2024 16:11:16 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [08-Sep-2024 19:21:06 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [09-Sep-2024 06:38:18 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [10-Sep-2024 01:18:22 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [10-Sep-2024 11:21:54 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [10-Sep-2024 16:21:01 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [11-Sep-2024 21:55:48 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [11-Sep-2024 21:55:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [11-Sep-2024 21:55:57 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [11-Sep-2024 21:56:00 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [11-Sep-2024 21:56:04 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [11-Sep-2024 22:01:44 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [11-Sep-2024 22:01:48 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [11-Sep-2024 22:01:52 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [11-Sep-2024 22:01:56 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [11-Sep-2024 22:04:53 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [11-Sep-2024 22:05:40 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [13-Sep-2024 10:22:14 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [13-Sep-2024 10:22:18 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [13-Sep-2024 10:22:22 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [13-Sep-2024 10:22:26 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [13-Sep-2024 10:22:31 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [13-Sep-2024 10:22:42 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [13-Sep-2024 10:22:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [13-Sep-2024 10:22:51 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [13-Sep-2024 10:22:54 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [13-Sep-2024 10:22:58 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [13-Sep-2024 10:24:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [13-Sep-2024 10:24:50 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [13-Sep-2024 10:24:54 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [13-Sep-2024 10:24:58 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [13-Sep-2024 10:25:02 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [13-Sep-2024 10:25:06 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [13-Sep-2024 10:25:10 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [13-Sep-2024 10:25:14 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [13-Sep-2024 10:25:38 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [13-Sep-2024 10:25:42 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [13-Sep-2024 10:25:54 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [13-Sep-2024 10:25:58 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [13-Sep-2024 15:44:45 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [15-Sep-2024 12:44:48 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [15-Sep-2024 13:55:24 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [15-Sep-2024 17:14:23 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [15-Sep-2024 20:23:29 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [15-Sep-2024 23:25:14 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [16-Sep-2024 00:33:29 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [16-Sep-2024 08:44:30 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [16-Sep-2024 10:29:10 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [16-Sep-2024 11:04:18 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [16-Sep-2024 20:14:38 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [17-Sep-2024 01:43:51 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [17-Sep-2024 14:18:56 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [17-Sep-2024 19:49:02 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [18-Sep-2024 08:27:34 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [18-Sep-2024 09:50:50 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [20-Sep-2024 02:54:09 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [20-Sep-2024 13:32:59 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [20-Sep-2024 18:43:46 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [21-Sep-2024 19:50:51 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [22-Sep-2024 06:09:06 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [22-Sep-2024 16:39:22 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [23-Sep-2024 14:02:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [24-Sep-2024 03:01:03 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [25-Sep-2024 00:22:47 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [25-Sep-2024 03:32:23 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [25-Sep-2024 09:04:09 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [26-Sep-2024 08:42:16 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [26-Sep-2024 15:35:56 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [28-Sep-2024 05:24:22 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [29-Sep-2024 20:21:01 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [02-Oct-2024 01:09:32 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [02-Oct-2024 14:46:13 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [03-Oct-2024 13:03:56 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [03-Oct-2024 17:29:39 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [03-Oct-2024 18:22:59 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [05-Oct-2024 10:13:28 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [08-Oct-2024 08:34:35 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [09-Oct-2024 09:22:42 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [09-Oct-2024 11:05:33 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [09-Oct-2024 23:19:19 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [11-Oct-2024 18:23:17 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [11-Oct-2024 19:17:12 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [12-Oct-2024 20:15:09 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [12-Oct-2024 20:41:36 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [13-Oct-2024 08:48:32 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [14-Oct-2024 01:19:26 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [15-Oct-2024 02:55:56 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [18-Oct-2024 02:13:35 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [18-Oct-2024 07:53:43 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [18-Oct-2024 14:19:28 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [18-Oct-2024 14:19:35 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [18-Oct-2024 14:20:31 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [18-Oct-2024 14:21:21 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [18-Oct-2024 14:23:41 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [18-Oct-2024 14:24:10 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [18-Oct-2024 14:25:01 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [18-Oct-2024 14:28:52 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [18-Oct-2024 14:56:02 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [18-Oct-2024 18:03:06 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [19-Oct-2024 00:15:55 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [19-Oct-2024 01:17:37 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [19-Oct-2024 02:24:07 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [19-Oct-2024 21:43:03 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [20-Oct-2024 20:04:18 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [23-Oct-2024 18:13:59 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [24-Oct-2024 00:23:21 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [24-Oct-2024 02:59:05 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [24-Oct-2024 11:20:12 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [24-Oct-2024 12:02:10 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [25-Oct-2024 02:28:06 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [28-Oct-2024 15:59:54 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [28-Oct-2024 22:55:01 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [29-Oct-2024 21:40:25 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [30-Oct-2024 02:39:45 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [31-Oct-2024 12:45:06 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [31-Oct-2024 12:45:10 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [31-Oct-2024 12:45:13 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [31-Oct-2024 12:45:18 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [31-Oct-2024 12:45:22 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [31-Oct-2024 12:49:54 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [31-Oct-2024 12:49:58 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [31-Oct-2024 12:50:02 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [31-Oct-2024 12:50:05 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [31-Oct-2024 12:52:22 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [31-Oct-2024 12:52:37 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [03-Nov-2024 07:55:22 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [05-Nov-2024 01:22:45 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [05-Nov-2024 14:23:23 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [09-Nov-2024 02:26:39 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/ServerErrorException.php on line 17 [09-Nov-2024 02:26:59 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidScopeException.php on line 17 [09-Nov-2024 02:27:03 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidGrantException.php on line 17 [09-Nov-2024 02:27:07 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidClientException.php on line 17 [09-Nov-2024 02:27:11 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/AccessDeniedException.php on line 17 [09-Nov-2024 02:27:15 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnauthorizedClientException.php on line 17 [09-Nov-2024 02:27:19 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRequestException.php on line 17 [09-Nov-2024 02:27:23 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 [09-Nov-2024 02:27:27 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidCredentialsException.php on line 17 [09-Nov-2024 02:27:31 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedGrantTypeException.php on line 17 [09-Nov-2024 02:27:35 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/UnsupportedResponseTypeException.php on line 17 [11-Nov-2024 16:48:04 America/Fortaleza] PHP Fatal error: Class 'League\OAuth2\Server\Exception\OAuthException' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Exception/InvalidRefreshException.php on line 17 oauth2-server/src/Exception/InvalidScopeException.php 0000644 00000001677 14716425166 0016776 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Exception; /** * Exception class */ class InvalidScopeException extends OAuthException { /** * {@inheritdoc} */ public $httpStatusCode = 400; /** * {@inheritdoc} */ public $errorType = 'invalid_scope'; /** * {@inheritdoc} */ public function __construct($parameter, $redirectUri = null) { $this->parameter = $parameter; parent::__construct( sprintf( 'The requested scope is invalid, unknown, or malformed. Check the "%s" scope.', $parameter ) ); $this->redirectUri = $redirectUri; } } oauth2-server/src/Exception/OAuthException.php 0000644 00000007353 14716425166 0015433 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Exception; use League\OAuth2\Server\Util\RedirectUri; use Symfony\Component\HttpFoundation\Request; /** * Exception class */ class OAuthException extends \Exception { /** * The HTTP status code for this exception that should be sent in the response */ public $httpStatusCode = 400; /** * Redirect URI if the server should redirect back to the client * * @var string|null */ public $redirectUri = null; /** * The exception type */ public $errorType = ''; /** * Parameter eventually passed to Exception */ public $parameter = ''; /** * Throw a new exception * * @param string $msg Exception Message */ public function __construct($msg = 'An error occured') { parent::__construct($msg); } /** * Should the server redirect back to the client? * * @return bool */ public function shouldRedirect() { return is_null($this->redirectUri) ? false : true; } /** * Return redirect URI if set * * @return string|null */ public function getRedirectUri() { return RedirectUri::make( $this->redirectUri, [ 'error' => $this->errorType, 'message' => $this->getMessage(), ] ); } /** * Return parameter if set * * @return string */ public function getParameter() { return $this->parameter; } /** * Get all headers that have to be send with the error response * * @return array Array with header values */ public function getHttpHeaders() { $headers = []; switch ($this->httpStatusCode) { case 401: $headers[] = 'HTTP/1.1 401 Unauthorized'; break; case 500: $headers[] = 'HTTP/1.1 500 Internal Server Error'; break; case 501: $headers[] = 'HTTP/1.1 501 Not Implemented'; break; case 400: default: $headers[] = 'HTTP/1.1 400 Bad Request'; break; } // Add "WWW-Authenticate" header // // RFC 6749, section 5.2.: // "If the client attempted to authenticate via the 'Authorization' // request header field, the authorization server MUST // respond with an HTTP 401 (Unauthorized) status code and // include the "WWW-Authenticate" response header field // matching the authentication scheme used by the client. // @codeCoverageIgnoreStart if ($this->errorType === 'invalid_client') { $authScheme = null; $request = new Request(); if ($request->getUser() !== null) { $authScheme = 'Basic'; } else { $authHeader = $request->headers->get('Authorization'); if ($authHeader !== null) { if (strpos($authHeader, 'Bearer') === 0) { $authScheme = 'Bearer'; } elseif (strpos($authHeader, 'Basic') === 0) { $authScheme = 'Basic'; } } } if ($authScheme !== null) { $headers[] = 'WWW-Authenticate: '.$authScheme.' realm=""'; } } // @codeCoverageIgnoreEnd return $headers; } } oauth2-server/src/Exception/InvalidRequestException.php 0000644 00000002044 14716425166 0017342 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Exception; /** * Exception class */ class InvalidRequestException extends OAuthException { /** * {@inheritdoc} */ public $httpStatusCode = 400; /** * {@inheritdoc} */ public $errorType = 'invalid_request'; /** * {@inheritdoc} */ public function __construct($parameter, $redirectUri = null) { $this->parameter = $parameter; parent::__construct( sprintf( 'The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed. Check the "%s" parameter.', $parameter ) ); $this->redirectUri = $redirectUri; } } oauth2-server/src/Exception/ServerErrorException.php 0000644 00000001615 14716425166 0016666 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Exception; /** * Exception class */ class ServerErrorException extends OAuthException { /** * {@inheritdoc} */ public $httpStatusCode = 500; /** * {@inheritdoc} */ public $errorType = 'server_error'; /** * {@inheritdoc} */ public function __construct($parameter = null) { $this->parameter = $parameter; $parameter = is_null($parameter) ? 'The authorization server encountered an unexpected condition which prevented it from fulfilling the request.' : $parameter; parent::__construct($parameter); } } oauth2-server/src/Exception/UnsupportedResponseTypeException.php 0000644 00000001621 14716425166 0021314 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Exception; /** * Exception class */ class UnsupportedResponseTypeException extends OAuthException { /** * {@inheritdoc} */ public $httpStatusCode = 400; /** * {@inheritdoc} */ public $errorType = 'unsupported_response_type'; /** * {@inheritdoc} */ public function __construct($parameter, $redirectUri = null) { $this->parameter = $parameter; parent::__construct('The authorization server does not support obtaining an access token using this method.'); $this->redirectUri = $redirectUri; } } oauth2-server/src/Exception/UnauthorizedClientException.php 0000644 00000001403 14716425166 0020221 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Exception; /** * Exception class */ class UnauthorizedClientException extends OAuthException { /** * {@inheritdoc} */ public $httpStatusCode = 400; /** * {@inheritdoc} */ public $errorType = 'unauthorized_client'; /** * {@inheritdoc} */ public function __construct() { parent::__construct('The client is not authorized to request an access token using this method.'); } } oauth2-server/src/Exception/InvalidClientException.php 0000644 00000001307 14716425166 0017131 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Exception; /** * Exception class */ class InvalidClientException extends OAuthException { /** * {@inheritdoc} */ public $httpStatusCode = 401; /** * {@inheritdoc} */ public $errorType = 'invalid_client'; /** * {@inheritdoc} */ public function __construct() { parent::__construct('Client authentication failed.'); } } oauth2-server/src/Exception/InvalidGrantException.php 0000644 00000001761 14716425166 0016772 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Exception; /** * Exception class */ class InvalidGrantException extends OAuthException { /** * {@inheritdoc} */ public $httpStatusCode = 400; /** * {@inheritdoc} */ public $errorType = 'invalid_grant'; /** * {@inheritdoc} */ public function __construct($parameter) { $this->parameter = $parameter; parent::__construct( sprintf( 'The provided authorization grant is invalid, expired, revoked, does not match the redirection URI used in the authorization request, or was issued to another client. Check the "%s" parameter.', $parameter ) ); } } oauth2-server/src/Util/SecureKey.php 0000644 00000002341 14716425166 0013402 0 ustar 00 * @copyright Copyright (c) 2013 PHP League of Extraordinary Packages * @license http://mit-license.org/ * @link http://github.com/php-loep/oauth2-server */ namespace League\OAuth2\Server\Util; use League\OAuth2\Server\Util\KeyAlgorithm\DefaultAlgorithm; use League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface; /** * SecureKey class */ class SecureKey { protected static $algorithm; /** * Generate a new unique code * * @param integer $len Length of the generated code * * @return string */ public static function generate($len = 40) { return self::getAlgorithm()->generate($len); } /** * @param KeyAlgorithmInterface $algorithm */ public static function setAlgorithm(KeyAlgorithmInterface $algorithm) { self::$algorithm = $algorithm; } /** * @return KeyAlgorithmInterface */ public static function getAlgorithm() { if (is_null(self::$algorithm)) { self::$algorithm = new DefaultAlgorithm(); } return self::$algorithm; } } oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php 0000644 00000002046 14716425166 0017337 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Util\KeyAlgorithm; class DefaultAlgorithm implements KeyAlgorithmInterface { /** * {@inheritdoc} */ public function generate($len = 40) { $stripped = ''; do { $bytes = openssl_random_pseudo_bytes($len, $strong); // We want to stop execution if the key fails because, well, that is bad. if ($bytes === false || $strong === false) { // @codeCoverageIgnoreStart throw new \Exception('Error Generating Key'); // @codeCoverageIgnoreEnd } $stripped .= str_replace(['/', '+', '='], '', base64_encode($bytes)); } while (strlen($stripped) < $len); return substr($stripped, 0, $len); } } oauth2-server/src/Util/KeyAlgorithm/error_log; 0000644 00000023003 14716425166 0015377 0 ustar 00 [14-Sep-2023 07:42:31 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [21-Nov-2023 12:24:34 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [28-Nov-2023 01:04:23 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [29-Nov-2023 07:38:24 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [30-Nov-2023 14:39:08 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [02-Dec-2023 16:22:14 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [29-Jan-2024 16:13:14 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [05-Apr-2024 04:52:23 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [07-Apr-2024 04:01:20 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [17-Apr-2024 17:20:44 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [05-May-2024 01:33:41 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [05-May-2024 11:29:09 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [05-May-2024 20:54:08 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [14-May-2024 20:19:40 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [28-May-2024 06:32:04 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [31-May-2024 23:38:46 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [19-Jun-2024 00:28:17 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [19-Jun-2024 07:30:17 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [19-Jun-2024 22:15:25 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [03-Jul-2024 15:33:12 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [09-Jul-2024 21:57:41 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [22-Jul-2024 19:44:36 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [27-Jul-2024 00:20:16 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [10-Aug-2024 22:18:12 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [16-Aug-2024 07:37:24 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [21-Aug-2024 13:17:48 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [28-Aug-2024 03:39:30 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [01-Sep-2024 23:44:29 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [10-Sep-2024 12:39:56 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [10-Sep-2024 12:40:00 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [11-Sep-2024 23:12:29 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [16-Sep-2024 10:23:28 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [21-Sep-2024 23:37:30 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [23-Oct-2024 16:14:04 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [30-Oct-2024 23:06:57 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [31-Oct-2024 14:28:49 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 [09-Nov-2024 04:36:31 America/Fortaleza] PHP Fatal error: Interface 'League\OAuth2\Server\Util\KeyAlgorithm\KeyAlgorithmInterface' not found in /home/mgatv524/public_html/edurocha/vendor/league/oauth2-server/src/Util/KeyAlgorithm/DefaultAlgorithm.php on line 14 oauth2-server/src/Util/KeyAlgorithm/KeyAlgorithmInterface.php 0000644 00000001045 14716425166 0020322 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Util\KeyAlgorithm; interface KeyAlgorithmInterface { /** * Generate a new unique code * * @param integer $len Length of the generated code * * @return string */ public function generate($len); } oauth2-server/src/Util/RedirectUri.php 0000644 00000001572 14716425166 0013731 0 ustar 00 * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Util; /** * RedirectUri class */ class RedirectUri { /** * Generate a new redirect uri * * @param string $uri The base URI * @param array $params The query string parameters * @param string $queryDelimeter The query string delimeter (default: "?") * * @return string The updated URI */ public static function make($uri, $params = [], $queryDelimeter = '?') { $uri .= (strstr($uri, $queryDelimeter) === false) ? $queryDelimeter : '&'; return $uri.http_build_query($params); } } oauth2-server/license.txt 0000644 00000002046 14716425166 0011453 0 ustar 00 MIT License Copyright (C) Alex Bilbie Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. oauth2-server/.gitignore 0000644 00000000430 14716425166 0011253 0 ustar 00 /vendor /composer.lock /build /docs /testing /examples/relational/vendor /examples/relational/config/oauth2.sqlite3 /examples/nosql/vendor /examples/nosql/config/oauth2.sqlite3 /examples/relational/composer.lock /tests/codecept/tests/_log oauth2-server.paw /output_*/ /_site .idea