You are here

public function Subscriber::setStorage in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/zendframework/zend-feed/src/PubSubHubbub/Subscriber.php \Zend\Feed\PubSubHubbub\Subscriber::setStorage()

Sets an instance of Zend\Feed\Pubsubhubbub\Model\SubscriptionPersistence used to background save any verification tokens associated with a subscription or other.

Parameters

Model\SubscriptionPersistenceInterface $storage:

Return value

Subscriber

1 call to Subscriber::setStorage()
Subscriber::setOptions in vendor/zendframework/zend-feed/src/PubSubHubbub/Subscriber.php
Process any injected configuration options

File

vendor/zendframework/zend-feed/src/PubSubHubbub/Subscriber.php, line 514

Class

Subscriber

Namespace

Zend\Feed\PubSubHubbub

Code

public function setStorage(Model\SubscriptionPersistenceInterface $storage) {
  $this->storage = $storage;
  return $this;
}