From d3f0aa47361a870cda604c6f88645e9ea85e34bc Mon Sep 17 00:00:00 2001 From: Julien PRIGENT Date: Thu, 19 Dec 2024 11:11:10 +0100 Subject: [PATCH] fix coding standard --- src/Generator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Generator.php b/src/Generator.php index dfc56d0bd..98f7d83f7 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -192,7 +192,7 @@ public function createClassNameDetails(string $name, string $namespacePrefix, st if (!empty($namespacePrefix) && empty($suffix)) { $check = \sprintf('%s\%s', $namespacePrefix, $check); } - Validator::classDoesNotExist($check); + Validator::classDoesNotExist($check); $className = rtrim($fullNamespacePrefix, '\\').'\\'.$className; } catch (RuntimeCommandException) {