/**
  * Verifies POST data given by the paypal instant payment notification
  *
  * @param array $data Most likely directly $_POST given by the controller.
  * @return boolean $valid depending on if data received is actually valid from paypal and not from some script monkey
  */
 function verify($data)
 {
     return parent::verify($data);
 }