Skip to content

Commit

Permalink
Add Github_Repo_Git_Branch class
Browse files Browse the repository at this point in the history
  • Loading branch information
ahutchings committed Jul 7, 2012
1 parent 14b96cd commit e980419
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions classes/github/repo/git/branch.php
@@ -0,0 +1,20 @@
<?php
/**
* <describe the class here>
*
* @package GithubAPIv3
* @category Objects
* @author Andrew Coulton
* @copyright (c) 2011 Andrew Coulton
* @license http://kohanaframework.org/license
*
* @property Github_Repo_Git_Commit $commit
* @property string $name
*/
class Github_Repo_Git_Branch extends Github_Object
{
protected $_fields = array (
'commit' => 'Github_Repo_Git_Commit',
'name' => NULL
);
}

0 comments on commit e980419

Please sign in to comment.