crytoteam/public_html/libgit/class.tree.element.php

15 lines
227 B
PHP
Raw Normal View History

2012-05-05 21:31:08 +02:00
<?php
class GitTreeElement
{
public $mode = "";
public $filename = "";
public $hash = "";
function __construct($mode, $filename, $hash)
{
$this->mode = $mode;
$this->filename = $filename;
$this->hash = $hash;
}
}