RSS Git Download  Clone
Raw Blame History
<?php

declare(strict_types=1);

namespace GitList\SCM;

class Repository
{
    public function __construct(protected string $path)
    {
    }

    public function getPath(): string
    {
        return $this->path;
    }
}