/**
  * Determine whether the user owns the trick.
  *
  * @param string $slug
  * @param int    $userId
  *
  * @return bool
  */
 protected function isTrickOwnedByUser($slug, $userId)
 {
     return $this->tricks->isTrickOwnedByUser($slug, $userId);
 }