vendor/trikoder/oauth2-bundle/Model/Scope.php line 7

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Trikoder\Bundle\OAuth2Bundle\Model;
  4. class Scope
  5. {
  6.     /**
  7.      * @var string
  8.      */
  9.     private $scope;
  10.     public function __construct(string $scope)
  11.     {
  12.         $this->scope $scope;
  13.     }
  14.     public function __toString(): string
  15.     {
  16.         return $this->scope;
  17.     }
  18. }