Skip to content

Commit

Permalink
list
Browse files Browse the repository at this point in the history
  • Loading branch information
faiberrec committed Feb 2, 2024
1 parent fb9e42e commit 9435b2e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions lib/recurly/performance_obligation_list.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

class Recurly_PerformanceObligationList extends Recurly_Pager
{
public static function get($params = null, $client = null) {
$uri = self::_uriWithParams(Recurly_Client::PATH_PERFORMANCE_OBLIGATIONS, $params);
return new self($uri, $client);
}

protected function getNodeName() {
return 'performance_obligations';
}
}

0 comments on commit 9435b2e

Please sign in to comment.