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.
crytoteam/public_html/libgit/class.tree.element.php

15 lines
227 B
PHP

<?php
class GitTreeElement
{
public $mode = "";
public $filename = "";
public $hash = "";
function __construct($mode, $filename, $hash)
{
$this->mode = $mode;
$this->filename = $filename;
$this->hash = $hash;
}
}