From f6d53abba83b298c069578d867612e3d5e062c67 Mon Sep 17 00:00:00 2001 From: David Jones Date: Wed, 26 Aug 2015 15:54:49 +1000 Subject: [PATCH] Complete GitHubCommitCommitAuthor.php Fill in some missing code. --- client/objects/GitHubCommitCommitAuthor.php | 40 ++++++++++++++++++++- 1 file changed, 39 insertions(+), 1 deletion(-) 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; + } }