Example #1
0
 /**
  * @param Response $response
  * @return bool
  */
 protected function parseDonation(Response $response)
 {
     $hxs = $response->xpath();
     $msg = $hxs->findOneOrNull('//table[@class="info_message"]/tr[1]/td[1]');
     return $msg !== null ? $msg->extract() : false;
 }