From cc4237379078b33b52a79cab9a9ed60752af4d31 Mon Sep 17 00:00:00 2001 From: Priyadi Iman Nurcahyo <1102197+priyadi@users.noreply.github.com> Date: Fri, 21 Jun 2024 13:21:27 +0700 Subject: [PATCH] build: update php-cs-fixer (#75) --- .phive/phars.xml | 2 +- CHANGELOG.md | 1 + src/MapperFactory.php | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.phive/phars.xml b/.phive/phars.xml index 544558f5..13662652 100644 --- a/.phive/phars.xml +++ b/.phive/phars.xml @@ -1,4 +1,4 @@ - + diff --git a/CHANGELOG.md b/CHANGELOG.md index b6a5e37c..d3c86bee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## 1.5.1 * build: add github-actions to dependabot +* build: update php-cs-fixer ## 1.5.0 diff --git a/src/MapperFactory.php b/src/MapperFactory.php index 8fd8e7b8..f4fe3886 100644 --- a/src/MapperFactory.php +++ b/src/MapperFactory.php @@ -156,7 +156,7 @@ class MapperFactory private ?EagerPropertiesResolverInterface $eagerPropertiesResolver = null; private ?ProxyGeneratorInterface $proxyGenerator = null; private ?ProxyRegistryInterface $proxyRegistry = null; - private ?ProxyAutoLoaderInterface $proxyAutoLoader = null; + private ?ProxyAutoloaderInterface $proxyAutoLoader = null; private ?ProxyFactoryInterface $proxyFactory = null; private ?MappingCommand $mappingCommand = null; @@ -833,7 +833,7 @@ protected function getProxyRegistry(): ProxyRegistryInterface return $this->proxyRegistry; } - protected function getProxyAutoLoader(): ProxyAutoLoaderInterface + protected function getProxyAutoLoader(): ProxyAutoloaderInterface { if (null === $this->proxyAutoLoader) { $proxyRegistry = $this->getProxyRegistry();