name = $name; $this->email = $email; } /** * Get email * * @return string * * @since 1.0.0 */ public function getEmail() : string { return $this->email; } /** * Get commit count * * @return int * * @since 1.0.0 */ public function getCommitCount() : int { return $this->commitCount; } /** * Set commit count * * @param int $count Commit count * * @return void * * @since 1.0.0 */ public function setCommitCount(int $count) : void { $this->commitCount = $count; } /** * Set additions count * * @param int $count Commit count * * @return void * * @since 1.0.0 */ public function setAdditionCount(int $count) : void { $this->additionsCount = $count; } /** * Get additions count * * @return int * * @since 1.0.0 */ public function getAdditionCount() : int { return $this->additionsCount; } /** * Set removals count * * @param int $count Commit count * * @return void * * @since 1.0.0 */ public function setRemovalCount(int $count) : void { $this->removalsCount = $count; } /** * Get removals count * * @return int * * @since 1.0.0 */ public function getRemovalCount() : int { return $this->removalsCount; } }