Files
adocWP/kb-antora-importer/includes/GitLab/GitLabProject.php
2026-05-12 14:37:09 +02:00

15 lines
269 B
PHP

<?php
declare(strict_types=1);
namespace KbAntoraImporter\GitLab;
final class GitLabProject
{
public function __construct(
public readonly string $id,
public readonly string $name,
public readonly string $pathWithNamespace
) {
}
}