comparison vendor/zendframework/zend-stdlib/src/StringUtils.php @ 2:5311817fb629

Theme updates
author Chris Cannam
date Tue, 10 Jul 2018 13:19:18 +0000
parents c75dbcec494b
children
comparison
equal deleted inserted replaced
1:0b0e5f3b1e83 2:5311817fb629
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 /**