Set ShortUrlIdentifier constructor to private

This commit is contained in:
Alejandro Celaya 2022-04-23 19:01:02 +02:00
parent 6074e4ae2c
commit cdef430b0b

View file

@ -10,7 +10,7 @@ use Symfony\Component\Console\Input\InputInterface;
final class ShortUrlIdentifier
{
public function __construct(public readonly string $shortCode, public readonly ?string $domain = null)
private function __construct(public readonly string $shortCode, public readonly ?string $domain = null)
{
}