Skip to content

Commit

Permalink
Merge pull request #780 from lstrojny/patch-1
Browse files Browse the repository at this point in the history
Make property private in final class
  • Loading branch information
Ocramius committed Mar 17, 2023
2 parents 1098575 + fc014f6 commit 04e124d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ProxyManager/Inflector/ClassNameInflector.php
Expand Up @@ -19,7 +19,7 @@ final class ClassNameInflector implements ClassNameInflectorInterface
private string $proxyMarker;
private ParameterHasher $parameterHasher;

public function __construct(protected string $proxyNamespace)
public function __construct(private string $proxyNamespace)
{
$this->proxyMarker = '\\' . self::PROXY_MARKER . '\\';
$this->proxyMarkerLength = strlen($this->proxyMarker);
Expand Down

0 comments on commit 04e124d

Please sign in to comment.