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 6b4d9f1 commit 8dc8025Copy full SHA for 8dc8025
src/Symfony/XmlServiceMapFactory.php
@@ -20,7 +20,7 @@ public function __construct(string $containerXml)
20
21
public function create(): ServiceMap
22
{
23
- $xml = @simplexml_load_file($this->containerXml);
+ $xml = @simplexml_load_file(rawurlencode($this->containerXml));
24
if ($xml === false) {
25
throw new XmlContainerNotExistsException(sprintf('Container %s does not exist or cannot be parsed', $this->containerXml));
26
}
0 commit comments