for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace luya\web\jsonld;
/**
* Review
*
* @author Basil Suter <[email protected]>
* @since 1.0.14
*/
class Review extends CreativeWork
{
public function typeDefintion()
return 'Review';
}
private $_itemRevieved;
* Set Item Reviewed
* @param Thing $itemReviewed
* @return static
public function setItemReviewed(Thing $itemReviewed)
$this->_itemRevieved = $itemReviewed;
return $this;
* Get Item Reviewed
* @return string
public function getItemReviewed()
return $this->_itemRevieved;
private $_reviewAspect;
* Set review rating
* @param string $reviewAspect
public function setReviewAspect($reviewAspect)
$this->_reviewAspect = $reviewAspect;
* Get review aspect
public function getReviewAspect()
return $this->_reviewAspect;
private $_reviewBody;
* Set review body
* @param string $reviewBody
public function setReviewBody($reviewBody)
$this->_reviewBody = $reviewBody;
* Get review body
public function getReviewBody()
return $this->_reviewBody;
private $_reviewRating;
* @param Rating $reviewRating
public function setReviewRating(Rating $reviewRating)
$this->_reviewRating = $reviewRating;
* Get Review Rating
* @return Rating
public function getReviewRating()
return $this->_reviewRating;