Skip to content

Commit 8408c1e

Browse files
committed
Fix grammar
1 parent 49856c2 commit 8408c1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/guides-cli/src/DependencyInjection/ContainerFactory.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,12 +97,12 @@ private function resolveExtensionClass(string $name): string
9797

9898
$fqcn = implode('\\', [$fqcn, 'DependencyInjection', $package . 'Extension']);
9999
if (!class_exists($fqcn)) {
100-
throw new LogicException(sprintf('Extension "%s" does not exists.', $fqcn));
100+
throw new LogicException(sprintf('Extension "%s" does not exist.', $fqcn));
101101
}
102102
}
103103

104104
if (!is_a($fqcn, ExtensionInterface::class, true)) {
105-
throw new LogicException(sprintf('Extension "%s" does not exists.', $fqcn));
105+
throw new LogicException(sprintf('Extension "%s" does not exist.', $fqcn));
106106
}
107107

108108
return $fqcn;

0 commit comments

Comments
 (0)