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

Commit 50ff227

Browse files
committed
Fix quotes in exception messages
1 parent f68d56c commit 50ff227

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
@@ -29,7 +29,7 @@ public function __construct($documentRoot, $env, $address = null, $router = null
2929
}
3030

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

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

0 commit comments

Comments
 (0)