Skip to content

Commit 345aa50

Browse files
committed
Merge branch '3.4' into 4.4
* 3.4: Fix more quotes in exception messages [3.4] Minor fixes [PropertyAccess] Improved errors when reading uninitialized properties
2 parents 995334b + 2eb3cb5 commit 345aa50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

NumberFormatter/NumberFormatter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ public function format($value, $type = self::TYPE_DEFAULT)
363363
}
364364

365365
if (self::CURRENCY === $this->style) {
366-
throw new NotImplementedException(sprintf('%s() method does not support the formatting of currencies (instance with CURRENCY style). "%s".', __METHOD__, NotImplementedException::INTL_INSTALL_MESSAGE));
366+
throw new NotImplementedException(sprintf('"%s()" method does not support the formatting of currencies (instance with CURRENCY style). "%s".', __METHOD__, NotImplementedException::INTL_INSTALL_MESSAGE));
367367
}
368368

369369
// Only the default type is supported.

0 commit comments

Comments
 (0)