Auth0\SDK\Helpers\Cache\NoCacheHandler::delete PHP Method

delete() public method

public delete ( $key )
    public function delete($key)
    {
    }

Usage Example

コード例 #1
0
ファイル: CacheTest.php プロジェクト: auth0/auth0-php
 public function testNoCache()
 {
     $cache = new NoCacheHandler();
     $this->assertNull($cache->get('pepe'));
     $cache->set('pepe', 'lala');
     $this->assertNull($cache->get('pepe'));
     $cache->delete('pepe');
     $this->assertNull($cache->get('pepe'));
 }
NoCacheHandler