You are here

public function Publisher::isSuccess in Zircon Profile 8.0

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

Returns a boolean indicator of whether the notifications to Hub Servers were ALL successful. If even one failed, FALSE is returned.

Return value

bool

File

vendor/zendframework/zend-feed/src/PubSubHubbub/Publisher.php, line 349

Class

Publisher

Namespace

Zend\Feed\PubSubHubbub

Code

public function isSuccess() {
  return !(count($this->errors) != 0);
}