From 560aa926c068beb15e12df00ad8c43a6d9ceb18f Mon Sep 17 00:00:00 2001 From: Demian Katz Date: Wed, 5 Feb 2025 09:22:26 -0500 Subject: [PATCH] Grammar. --- .../src/VuFindConsole/Command/Generate/ExtendClassCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/VuFindConsole/src/VuFindConsole/Command/Generate/ExtendClassCommand.php b/module/VuFindConsole/src/VuFindConsole/Command/Generate/ExtendClassCommand.php index a0249555300..41b566f02aa 100644 --- a/module/VuFindConsole/src/VuFindConsole/Command/Generate/ExtendClassCommand.php +++ b/module/VuFindConsole/src/VuFindConsole/Command/Generate/ExtendClassCommand.php @@ -85,7 +85,7 @@ protected function configure() */ protected function execute(InputInterface $input, OutputInterface $output) { - // Normalize class name to exclude leading slashes; a FQCN doesn't need it: + // Normalize class name to exclude leading slashes; a FQCN doesn't need them: $class = ltrim($input->getArgument('class_name'), '\\'); $target = $input->getArgument('target_module'); $extendFactory = $input->getOption('extendfactory');