8000 Trim final stop from deprecation message · symfony/symfony@98f3ba9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 98f3ba9

Browse files
committed
Trim final stop from deprecation message
1 parent 6ce03d3 commit 98f3ba9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public static function register($mode = false)
105105
uasort($deprecations[$group], $cmp);
106106

107107
foreach ($deprecations[$group] as $msg => $notices) {
108-
echo "\n", $msg, ': ', $notices['count'], "x\n";
108+
echo "\n", rtrim($msg, '.'), ': ', $notices['count'], "x\n";
109109

110110
arsort($notices);
111111

0 commit comments

Comments
 (0)
0