for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Majora\Component\OAuth\Entity;
use Majora\Component\OAuth\Model\RefreshTokenInterface;
use Majora\Component\OAuth\Model\AccountInterface;
use Majora\Component\OAuth\Model\ApplicationInterface;
use Symfony\Component\Security\Core\Encoder\MessageDigestPasswordEncoder;
/**
* Class RefreshToken is the default implementation of RefreshTokenInterface
*
* @author Raphael De Freitas <[email protected]>
*/
class RefreshToken extends AbstractToken implements RefreshTokenInterface
{
}