Skip to content

Commit ec05547

Browse files
committed
Fix grammar in "container not found" error message
1 parent 46530d5 commit ec05547

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/Symfony/XmlServiceMapFactory.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function create(): ServiceMap
2222
{
2323
$xml = @simplexml_load_file($this->containerXml);
2424
if ($xml === false) {
25-
throw new XmlContainerNotExistsException(sprintf('Container %s not exists or cannot be parsed', $this->containerXml));
25+
throw new XmlContainerNotExistsException(sprintf('Container %s does not exist or cannot be parsed', $this->containerXml));
2626
}
2727

2828
/** @var \PHPStan\Symfony\Service[] $services */

0 commit comments

Comments
 (0)