comparison vendor/zendframework/zend-stdlib/src/StringWrapper/MbString.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
46 * 46 *
47 * @throws Exception\ExtensionNotLoadedException 47 * @throws Exception\ExtensionNotLoadedException
48 */ 48 */
49 public function __construct() 49 public function __construct()
50 { 50 {
51 if (!extension_loaded('mbstring')) { 51 if (! extension_loaded('mbstring')) {
52 throw new Exception\ExtensionNotLoadedException( 52 throw new Exception\ExtensionNotLoadedException(
53 'PHP extension "mbstring" is required for this wrapper' 53 'PHP extension "mbstring" is required for this wrapper'
54 ); 54 );
55 } 55 }
56 } 56 }