芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/bd.mgaplay.com.br/vendor/league/oauth2-server/src/Entities/Traits/ScopeTrait.php
* @copyright Copyright (c) Andrew Millington * @license http://mit-license.org * * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Entities\Traits; trait ScopeTrait { /** * Serialize the object to the scopes string identifier when using json_encode(). * * @return string */ public function jsonSerialize() { return $this->getIdentifier(); } /** * @return string */ abstract public function getIdentifier(); }