From ec05547b327543efca661bc8b076334ca22d120c Mon Sep 17 00:00:00 2001 From: Andreas Braun Date: Thu, 24 Jan 2019 09:55:20 +0100 Subject: [PATCH] Fix grammar in "container not found" error message --- src/Symfony/XmlServiceMapFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/XmlServiceMapFactory.php b/src/Symfony/XmlServiceMapFactory.php index 03afc1a2..858ea52a 100644 --- a/src/Symfony/XmlServiceMapFactory.php +++ b/src/Symfony/XmlServiceMapFactory.php @@ -22,7 +22,7 @@ public function create(): ServiceMap { $xml = @simplexml_load_file($this->containerXml); if ($xml === false) { - throw new XmlContainerNotExistsException(sprintf('Container %s not exists or cannot be parsed', $this->containerXml)); + throw new XmlContainerNotExistsException(sprintf('Container %s does not exist or cannot be parsed', $this->containerXml)); } /** @var \PHPStan\Symfony\Service[] $services */