You are here

public static function PubSubHubbub::getEscaper in Zircon Profile 8

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

Get the Escaper instance

If none registered, lazy-loads an instance.

Return value

Escaper

1 call to PubSubHubbub::getEscaper()
PubSubHubbub::urlencode in vendor/zendframework/zend-feed/src/PubSubHubbub/PubSubHubbub.php
RFC 3986 safe url encoding method

File

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

Class

PubSubHubbub

Namespace

Zend\Feed\PubSubHubbub

Code

public static function getEscaper() {
  if (null === static::$escaper) {
    static::setEscaper(new Escaper());
  }
  return static::$escaper;
}