for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Charcoal\User;
/**
* Authorization Token
*
* To keep a user logged in using a cookie and a database token.
*/
class AuthToken extends AbstractAuthToken implements
AuthTokenCookieInterface
{
use AuthTokenCookieTrait;
}