| 1 | <?php |
||
| 15 | class Role implements IdentifierInterface |
||
| 16 | { |
||
| 17 | protected $type = 'role'; |
||
| 18 | |||
| 19 | protected $token; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * {@inheritDoc} |
||
| 23 | */ |
||
| 24 | public function __construct($token) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritDoc} |
||
| 31 | */ |
||
| 32 | public function get() |
||
| 36 | |||
| 37 | /** |
||
| 38 | * {@inheritDoc} |
||
| 39 | */ |
||
| 40 | public function type(): string |
||
| 44 | } |
||
| 45 |