You are here

public function AbstractCallback::setStorage in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/zendframework/zend-feed/src/PubSubHubbub/AbstractCallback.php \Zend\Feed\PubSubHubbub\AbstractCallback::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

AbstractCallback

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

File

vendor/zendframework/zend-feed/src/PubSubHubbub/AbstractCallback.php, line 106

Class

AbstractCallback

Namespace

Zend\Feed\PubSubHubbub

Code

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