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(); }