From 14574ddcba4e03faa2c6edbd75183b4dff2b933c Mon Sep 17 00:00:00 2001 From: jygaulier Date: Mon, 9 Dec 2024 12:25:48 +0100 Subject: [PATCH] fix missing rename --- .../src/Command/ConfigurationValidateCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/php/rendition-factory/src/Command/ConfigurationValidateCommand.php b/lib/php/rendition-factory/src/Command/ConfigurationValidateCommand.php index 07a045cbf..b52b425bf 100644 --- a/lib/php/rendition-factory/src/Command/ConfigurationValidateCommand.php +++ b/lib/php/rendition-factory/src/Command/ConfigurationValidateCommand.php @@ -4,7 +4,7 @@ namespace Alchemy\RenditionFactory\Command; -use Alchemy\RenditionFactory\Config\buildConfigValidator; +use Alchemy\RenditionFactory\Config\BuildConfigValidator; use Alchemy\RenditionFactory\Config\YamlLoader; use Symfony\Component\Console\Attribute\AsCommand; use Symfony\Component\Console\Command\Command; @@ -17,7 +17,7 @@ class ConfigurationValidateCommand extends Command { public function __construct( private readonly YamlLoader $yamlLoader, - private readonly buildConfigValidator $validator, + private readonly BuildConfigValidator $validator, ) { parent::__construct(); }