Skip to content

Commit

Permalink
build: update php-cs-fixer (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
priyadi committed Jun 21, 2024
1 parent fb12737 commit cc42373
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .phive/phars.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<phive xmlns="https://phar.io/phive">
<phar name="php-cs-fixer" version="^3.42.0" installed="3.42.0" location="./tools/php-cs-fixer" copy="false"/>
<phar name="php-cs-fixer" version="^3.59.3" installed="3.59.3" location="./tools/php-cs-fixer" copy="false"/>
</phive>
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 1.5.1

* build: add github-actions to dependabot
* build: update php-cs-fixer

## 1.5.0

Expand Down
4 changes: 2 additions & 2 deletions src/MapperFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit cc42373

Please sign in to comment.