ScriptFUSION\Porter\Cache\CacheItem::expiresAt PHP Méthode

expiresAt() public méthode

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

Usage Example

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