14 lines
229 B
PHP
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 = ''
|
|
) {
|
|
}
|
|
}
|