Update v1.0.6.5

This commit is contained in:
sujitprasad
2016-03-02 12:25:21 +05:30
parent 7011553462
commit c56ff86194
218 changed files with 17161 additions and 2358 deletions

View File

@@ -1,9 +1,17 @@
<?php
/*
* This file is part of jwt-auth.
*
* (c) Sean Tymon <tymon148@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Tymon\JWTAuth\Providers\Storage;
use Illuminate\Cache\CacheManager;
use Tymon\JWTAuth\Providers\Storage\StorageInterface;
class IlluminateCacheAdapter implements StorageInterface
{
@@ -26,7 +34,7 @@ class IlluminateCacheAdapter implements StorageInterface
}
/**
* Add a new item into storage
* Add a new item into storage.
*
* @param string $key
* @param mixed $value
@@ -39,7 +47,7 @@ class IlluminateCacheAdapter implements StorageInterface
}
/**
* Check whether a key exists in storage
* Check whether a key exists in storage.
*
* @param string $key
* @return bool
@@ -50,7 +58,7 @@ class IlluminateCacheAdapter implements StorageInterface
}
/**
* Remove an item from storage
* Remove an item from storage.
*
* @param string $key
* @return bool
@@ -61,7 +69,7 @@ class IlluminateCacheAdapter implements StorageInterface
}
/**
* Remove all items associated with the tag
* Remove all items associated with the tag.
*
* @return void
*/
@@ -71,7 +79,7 @@ class IlluminateCacheAdapter implements StorageInterface
}
/**
* Return the cache instance with tags attached
* Return the cache instance with tags attached.
*
* @return \Illuminate\Cache\CacheManager
*/

View File

@@ -1,25 +1,34 @@
<?php
/*
* This file is part of jwt-auth.
*
* (c) Sean Tymon <tymon148@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Tymon\JWTAuth\Providers\Storage;
interface StorageInterface
{
/**
* @param string $key
* @param integer $minutes
* @param int $minutes
* @return void
*/
public function add($key, $value, $minutes);
/**
* @param string $key
* @return boolean
* @return bool
*/
public function has($key);
/**
* @param string $key
* @return boolean
* @return bool
*/
public function destroy($key);