1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<?php namespace Studip\OAuth2\Bridge; use League\OAuth2\Server\Entities\Traits\EntityTrait; use League\OAuth2\Server\Entities\UserEntityInterface; class UserEntity implements UserEntityInterface { use EntityTrait; public function __construct(string $identifier) { $this->setIdentifier($identifier); } }