Exemplo n.º 1
0
 /**
  * List the cards of this customer.
  *
  * @param   Payplug\Payplug $payplug the client configuration
  *
  * @param   int $perPage the number of results per page
  * @param   int $page the page number
  * @return  Card[] the array of cards
  *
  * @throws  Payplug\Exception\InvalidPaymentException
  * @throws  Payplug\Exception\UnexpectedAPIResponseException
  */
 public function listCards($perPage = null, $page = null, Payplug\Payplug $payplug = null)
 {
     return Payplug\Resource\Card::listCards($this, $perPage, $page, $payplug);
 }