Skip to content

Commit fc014f6

Browse files
authored
Make property private in final class
1 parent 1098575 commit fc014f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ProxyManager/Inflector/ClassNameInflector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ final class ClassNameInflector implements ClassNameInflectorInterface
1919
private string $proxyMarker;
2020
private ParameterHasher $parameterHasher;
2121

22-
public function __construct(protected string $proxyNamespace)
22+
public function __construct(private string $proxyNamespace)
2323
{
2424
$this->proxyMarker = '\\' . self::PROXY_MARKER . '\\';
2525
$this->proxyMarkerLength = strlen($this->proxyMarker);

0 commit comments

Comments
 (0)