author = $author; } /** * @return CommitAuthor */ public function getAuthor() { return $this->author; } /** * @param string */ public function setCommitMessage($commitMessage) { $this->commitMessage = $commitMessage; } /** * @return string */ public function getCommitMessage() { return $this->commitMessage; } /** * @param string */ public function setCommitSha($commitSha) { $this->commitSha = $commitSha; } /** * @return string */ public function getCommitSha() { return $this->commitSha; } /** * @param string */ public function setCommitTime($commitTime) { $this->commitTime = $commitTime; } /** * @return string */ public function getCommitTime() { return $this->commitTime; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CommitLogEntry::class, 'Google_Service_Dataform_CommitLogEntry');