PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
laravel
/
passport
/
src
/
Bridge
<?php namespace Laravel\Passport\Bridge; trait FormatsScopesForStorage { /** * Format the given scopes for storage. * * @param array $scopes * @return string */ public function formatScopesForStorage(array $scopes) { return json_encode($this->scopesToArray($scopes)); } /** * Get an array of scope identifiers for storage. * * @param array $scopes * @return array */ public function scopesToArray(array $scopes) { return array_map(function ($scope) { return $scope->getIdentifier(); }, $scopes); } }
[-] AccessTokenRepository.php
[edit]
[-] UserRepository.php
[edit]
[-] AuthCode.php
[edit]
[-] FormatsScopesForStorage.php
[edit]
[+]
..
[-] Scope.php
[edit]
[-] RefreshTokenRepository.php
[edit]
[-] Client.php
[edit]
[-] AccessToken.php
[edit]
[-] ClientRepository.php
[edit]
[-] RefreshToken.php
[edit]
[-] AuthCodeRepository.php
[edit]
[-] PersonalAccessGrant.php
[edit]
[-] User.php
[edit]
[-] ScopeRepository.php
[edit]