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

expiresAt() public method

public expiresAt ( $expiration )
    public function expiresAt($expiration)
    {
        throw new NotImplementedException();
    }

Usage Example

Example #1
0
 public function testExpiresAt()
 {
     $this->setExpectedException(NotImplementedException::class);
     $this->item->expiresAt(null);
 }