Exemplo n.º 1
0
 /**
  * List all created customers
  *
  * @return array list of customers
  * @throws Start_Error_Parameters if any of the parameters is invalid
  * @throws Start_Error_Authentication if the API Key is invalid
  * @throws Start_Error if there is a general error in the API endpoint
  * @throws Exception for any other errors
  */
 public static function all()
 {
     $return_data = Start_Charge::make_request("customer_list");
     return $return_data;
 }