/**
  * Customer reviews.
  *
  * @return $this
  */
 public function setReviewCollection()
 {
     $customerId = $this->customer->getId();
     $collection = $this->reviewCollection->addCustomerFilter($customerId)->setOrder('review_id', 'DESC');
     $this->reviewCollection = $collection;
     return $this;
 }