get() public method

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