for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Eljam\GuzzleJwt\Persistence;
use Eljam\GuzzleJwt\JwtToken;
/**
* @author Sevastian Hübner <[email protected]>
*/
class NullTokenPersistence implements TokenPersistenceInterface
{
public function saveToken(JwtToken $token)
return;
}
public function restoreToken()
return null;
public function deleteToken()
public function hasToken()
return false;