Skip to content

Commit

Permalink
Merge pull request #4 from kingscode/patch-reviewmodel
Browse files Browse the repository at this point in the history
Added fields in reviewModel
  • Loading branch information
koenhoeijmakers committed Jan 7, 2020
2 parents 12efb09 + b120254 commit e370a61
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion src/Models/Reviews/ReviewModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,20 @@ public function getRating(): int
return $this->rating;
}

/**
* @return string
*/
public function getReviewId(): string
{
return $this->reviewId;
}

/**
* @return string
*/
public function getAuthor(): string
{
return $this->author;
return $this->reviewAuthor;
}

/**
Expand All @@ -50,6 +58,14 @@ public function getCity(): string
return $this->city;
}

/**
* @return string
*/
public function getReferenceCode(): string
{
return $this->referenceCode;
}

/**
* @return string
*/
Expand Down

0 comments on commit e370a61

Please sign in to comment.