for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace OAuth;
use Del\Entity\User as UserEntity;
use League\OAuth2\Server\Entities\UserEntityInterface;
/**
* @MappedSuperclass(repositoryClass="OAuth\Repository\UserRepository")
*/
class User extends UserEntity implements UserEntityInterface
{
* @return User
public function getIdentifier()
return $this->getID();
}