Dave Jarvis' Repositories

git clone https://repo.autonoma.ca/repo/treetrek.git
<?php
interface TagRenderer {
  public function renderTagItem(
    string $name,
    string $sha,
    string $targetSha,
    ?string $prevTargetSha,
    int $timestamp,
    string $message,
    string $author
  ): void;

  public function renderTime( int $timestamp ): void;
}