Mercurial > hg > isophonics-drupal-site
comparison vendor/zendframework/zend-stdlib/src/StringWrapper/Iconv.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 |
---|---|
212 * | 212 * |
213 * @throws Exception\ExtensionNotLoadedException | 213 * @throws Exception\ExtensionNotLoadedException |
214 */ | 214 */ |
215 public function __construct() | 215 public function __construct() |
216 { | 216 { |
217 if (!extension_loaded('iconv')) { | 217 if (! extension_loaded('iconv')) { |
218 throw new Exception\ExtensionNotLoadedException( | 218 throw new Exception\ExtensionNotLoadedException( |
219 'PHP extension "iconv" is required for this wrapper' | 219 'PHP extension "iconv" is required for this wrapper' |
220 ); | 220 ); |
221 } | 221 } |
222 } | 222 } |