You are here

public function Subscriber::usePathParameter 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::usePathParameter()

Set flag indicating whether or not to use a path parameter

Parameters

bool $bool:

Return value

Subscriber

1 call to Subscriber::usePathParameter()
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 428

Class

Subscriber

Namespace

Zend\Feed\PubSubHubbub

Code

public function usePathParameter($bool = true) {
  $this->usePathParameter = $bool;
  return $this;
}