We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d00d76 commit 76ee413Copy full SHA for 76ee413
ux.symfony.com/src/Service/UxPackageRepository.php
@@ -210,7 +210,7 @@ public function find(string $name): UxPackage
210
}
211
212
213
- throw new \InvalidArgumentException(sprintf('Unknown package "%s"', $name));
+ throw new \InvalidArgumentException(sprintf('Unknown package "%s".', $name));
214
215
216
public function count(): int
@@ -227,6 +227,6 @@ public function findByRoute(string $route): UxPackage
227
228
229
230
- throw new \InvalidArgumentException(sprintf('Could not find a package for the current route "%s"', $route));
+ throw new \InvalidArgumentException(sprintf('Could not find a package for the current route "%s".', $route));
231
232
0 commit comments