Skip to content

Commit cedc6b3

Browse files
Merge branch '5.2' into 5.x
* 5.2: [PhpUnitBridge] CS fix [Notifier] Only use sprintf instead of sprintf and string concat [PhpUnitBridge] Fix PHP 5.5 compatibility Fix exception thrown by Form when converting UUID [Notifier] Remove trailing argument in tests [Serializer] Make fabbot happy with 5.2 tests CS Add missing param annotation abouts $fileLinkFormat [HttpClient] Use decoration instead of class replacement for mock factory [Form] Fixed StringUtil::trim() to trim ZERO WIDTH SPACE (U+200B) and SOFT HYPHEN (U+00AD) 23412 Stop treating multiline resources as globs
2 parents 3201b16 + 46d7946 commit cedc6b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Exception/IncompleteDsnException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public function __construct(string $message, string $dsn = null, ?\Throwable $pr
2424
{
2525
$this->dsn = $dsn;
2626
if ($dsn) {
27-
$message = sprintf('Invalid "%s" notifier DSN: ', $dsn).$message;
27+
$message = sprintf('Invalid "%s" notifier DSN: %s', $dsn, $message);
2828
}
2929

3030
parent::__construct($message, 0, $previous);

0 commit comments

Comments
 (0)