public function Publisher::isSuccess in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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
Namespace
Zend\Feed\PubSubHubbubCode
public function isSuccess() {
return !(count($this->errors) != 0);
}