You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
305 B
PHTML

<?php
class GitBranch
{
public $sha = "";
public $repo = null;
function __construct($repo, $sha)
{
$this->repo = $repo;
$this->sha = $sha;
}
function GetLastCommit()
{
return $this->repo->GetObject($this->sha);
}
function GetTree()
{
return $this->GetLastCommit()->GetTree();
}
}