16 lines
272 B
PHP
16 lines
272 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace App\Dto\Builder;
|
|
|
|
final readonly class DocumentationVersion
|
|
{
|
|
public function __construct(
|
|
private ?bool $isPublic = null,
|
|
) { }
|
|
|
|
public function isPublic(): ?bool
|
|
{
|
|
return $this->isPublic;
|
|
}
|
|
}
|