ScriptFUSION\Porter\Cache\CacheItem::expiresAfter PHP Method

expiresAfter() public method

public expiresAfter ( $time )
    public function expiresAfter($time)
    {
        throw new NotImplementedException();
    }

Usage Example

コード例 #1
0
ファイル: CacheItemTest.php プロジェクト: ScriptFUSION/Porter
 public function testExpiresAfter()
 {
     $this->setExpectedException(NotImplementedException::class);
     $this->item->expiresAfter(null);
 }