Skip to content
This repository was archived by the owner on Dec 9, 2023. It is now read-only.

Commit fe43844

Browse files
committed
Merge branch '3.4' into 4.4
* 3.4: Fix quotes in exception messages
2 parents 92a3756 + 50ff227 commit fe43844

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

WebServerConfig.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function __construct(string $documentRoot, string $env, string $address =
3131
}
3232

3333
if (null === $file = $this->findFrontController($documentRoot, $env)) {
34-
throw new \InvalidArgumentException(sprintf('Unable to find the front controller under "%s" (none of these files exist: %s).', $documentRoot, implode(', ', $this->getFrontControllerFileNames($env))));
34+
throw new \InvalidArgumentException(sprintf('Unable to find the front controller under "%s" (none of these files exist: "%s").', $documentRoot, implode('", "', $this->getFrontControllerFileNames($env))));
3535
}
3636

3737
$_ENV['APP_FRONT_CONTROLLER'] = $file;

0 commit comments

Comments
 (0)