Exemplo n.º 1
0
 /**
  * Get Patron Fines
  *
  * This is responsible for retrieving all fines by a specific patron.
  *
  * @param array $patron The patron array from patronLogin
  *
  * @return mixed        Array of the patron's fines on success, PEAR_Error
  * otherwise.
  * @access public
  */
 public function getMyFines($patron, $includeMessages = false)
 {
     return $this->driver->getMyFines($patron, $includeMessages);
 }