|null */ public $repositoryClass; /** @var bool */ public $readOnly = false; /** * @psalm-param class-string|null $repositoryClass */ public function __construct(?string $repositoryClass = null, bool $readOnly = false) { $this->repositoryClass = $repositoryClass; $this->readOnly = $readOnly; } }