Mercurial > hg > isophonics-drupal-site
comparison vendor/zendframework/zend-stdlib/src/StringUtils.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 |
|---|---|
| 82 * @return void | 82 * @return void |
| 83 */ | 83 */ |
| 84 public static function registerWrapper($wrapper) | 84 public static function registerWrapper($wrapper) |
| 85 { | 85 { |
| 86 $wrapper = (string) $wrapper; | 86 $wrapper = (string) $wrapper; |
| 87 if (!in_array($wrapper, static::$wrapperRegistry, true)) { | 87 if (! in_array($wrapper, static::$wrapperRegistry, true)) { |
| 88 static::$wrapperRegistry[] = $wrapper; | 88 static::$wrapperRegistry[] = $wrapper; |
| 89 } | 89 } |
| 90 } | 90 } |
| 91 | 91 |
| 92 /** | 92 /** |
