comparison vendor/zendframework/zend-feed/src/PubSubHubbub/PubSubHubbub.php @ 12:7a779792577d

Update Drupal core to v8.4.5 (via Composer)
author Chris Cannam
date Fri, 23 Feb 2018 15:52:07 +0000
parents 4c8ae668cc8c
children
comparison
equal deleted inserted replaced
11:bfffd8d7479a 12:7a779792577d
83 * 83 *
84 * @return Http\Client 84 * @return Http\Client
85 */ 85 */
86 public static function getHttpClient() 86 public static function getHttpClient()
87 { 87 {
88 if (!isset(static::$httpClient)) { 88 if (! isset(static::$httpClient)) {
89 static::$httpClient = new Http\Client; 89 static::$httpClient = new Http\Client;
90 } else { 90 } else {
91 static::$httpClient->resetParameters(); 91 static::$httpClient->resetParameters();
92 } 92 }
93 return static::$httpClient; 93 return static::$httpClient;