15 lines
227 B
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;
|
|
}
|
|
}
|