diff --git a/client/objects/GitHubCommitCommitAuthor.php b/client/objects/GitHubCommitCommitAuthor.php index 678ea28..e2c27d2 100644 --- a/client/objects/GitHubCommitCommitAuthor.php +++ b/client/objects/GitHubCommitCommitAuthor.php @@ -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; + } }