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

14 lines
229 B
PHP

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