public static function PubSubHubbub::setEscaper in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/zendframework/zend-feed/src/PubSubHubbub/PubSubHubbub.php \Zend\Feed\PubSubHubbub\PubSubHubbub::setEscaper()
Set the Escaper instance
If null, resets the instance
Parameters
null|Escaper $escaper:
1 call to PubSubHubbub::setEscaper()
- PubSubHubbub::getEscaper in vendor/
zendframework/ zend-feed/ src/ PubSubHubbub/ PubSubHubbub.php - Get the Escaper instance
File
- vendor/
zendframework/ zend-feed/ src/ PubSubHubbub/ PubSubHubbub.php, line 114
Class
Namespace
Zend\Feed\PubSubHubbubCode
public static function setEscaper(Escaper $escaper = null) {
static::$escaper = $escaper;
}