/**
  * Get Patron Transactions
  *
  * This is responsible for retrieving all transactions (i.e. checked out items)
  * by a specific patron.
  *
  * @param integer $page current     page to retrieve data for
  * @param integer $recordsPerPage   current page to retrieve data for
  * @param string  $sortOption       how the dates should sort.
  *
  * @return mixed        Array of the patron's transactions on success,
  * PEAR_Error otherwise.
  * @access public
  */
 public function getMyTransactions($page = 1, $recordsPerPage = -1, $sortOption = 'dueDate')
 {
     return $this->driver->getMyTransactions($page, $recordsPerPage, $sortOption);
 }