Skip to content

Commit

Permalink
Complete GitHubCommitCommitAuthor.php
Browse files Browse the repository at this point in the history
Fill in some missing code.
  • Loading branch information
djplaner committed Aug 26, 2015
1 parent 98c408b commit f6d53ab
Showing 1 changed file with 39 additions and 1 deletion.
40 changes: 39 additions & 1 deletion client/objects/GitHubCommitCommitAuthor.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,44 @@ protected function getAttributes()
'email' => 'string',
));
}


/**
* @var string
*/
protected $name;

/**
* @var string
*/
protected $date;

/**
* @var string
*/
protected $email;

/**
* @return string
*/
public function getName()
{
return $this->name;
}

/**
* @return string
*/
public function getDate()
{
return $this->date;
}

/**
* @return string
*/
public function getEmail()
{
return $this->email;
}
}

0 comments on commit f6d53ab

Please sign in to comment.