Skip to content
Snippets Groups Projects
Unverified Commit 04e124d5 authored by Marco Pivetta's avatar Marco Pivetta Committed by GitHub
Browse files

Merge pull request #780 from lstrojny/patch-1

Make property private in final class
parents 10985759 fc014f69
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment