/**
  * Constructor
  *
  * @since 1.0.0
  * @param mixed $id
  */
 public function __construct($id)
 {
     $this->type = 'review';
     parent::__construct($id);
 }
 /**
  * Constructor
  *
  * @since 1.0.0
  * @param mixed $id
  */
 public function __construct($id)
 {
     $this->type = 'question';
     parent::__construct($id);
 }
 /**
  * Constructor
  *
  * @since 1.0.0
  * @param mixed $id
  */
 public function __construct($id)
 {
     $this->type = 'photo';
     parent::__construct($id);
 }
 /**
  * Constructor
  *
  * @since 1.0.0
  * @param mixed $id
  */
 public function __construct($id)
 {
     $this->type = 'comment';
     parent::__construct($id);
 }