8000 minor #28996 [FrameworkBundle] Fix broken exception message (chalasr) · symfony/symfony@5c3d826 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5c3d826

Browse files
committed
minor #28996 [FrameworkBundle] Fix broken exception message (chalasr)
This PR was merged into the 2.8 branch. Discussion ---------- [FrameworkBundle] Fix broken exception message | Q | A | ------------- | --- | Branch? | 2.8 | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | n/a | License | MIT | Doc PR | n/a ![](https://i.imgur.com/GmBhlqv.png) Commits ------- 8e9860c [FrameworkBundle] Fix broken exception message
2 parents 060751d + 8e9860c commit 5c3d826

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/FrameworkBundle/Command/TranslationUpdateCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
108108
$currentName = $transPaths[0];
109109

110110
if (!is_dir($transPaths[0])) {
111-
throw new \InvalidArgumentException(sprintf('<error>"%s" is neither an enabled bundle nor a directory.</error>', $transPaths[0]));
111+
throw new \InvalidArgumentException(sprintf('"%s" is neither an enabled bundle nor a directory.', $transPaths[0]));
112112
}
113113
}
114114
}

0 commit comments

Comments
 (0)
0