| Current Path : /var/www/v3.cesa.co.za/vendor/league/oauth2-server-bundle/src/ValueObject/ |
| Current File : /var/www/v3.cesa.co.za/vendor/league/oauth2-server-bundle/src/ValueObject/Scope.php |
<?php
declare(strict_types=1);
namespace League\Bundle\OAuth2ServerBundle\ValueObject;
class Scope implements \Stringable
{
/**
* @var non-empty-string
*/
private $scope;
/**
* @param non-empty-string $scope
*/
public function __construct(string $scope)
{
$this->scope = $scope;
}
/**
* @return non-empty-string
*/
public function __toString(): string
{
return $this->scope;
}
}