Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: update php-cs-fixer #75

Merged
merged 1 commit into from
Jun 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
build: update php-cs-fixer
  • Loading branch information
priyadi committed Jun 21, 2024
commit 2ab0212f6b195463653ce2390b222b2a0b357870
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