Phaxio/vendor/phaxio/phaxio/lib/Phaxio/AbstractResources.php
d6c2a24e
 <?php
 
 namespace Phaxio;
 
 abstract class AbstractResources
 {
     protected $phaxio;
     protected $collection_class;
 
     public function __construct($phaxio)
     {
         $this->phaxio = $phaxio;
     }
 
     public function getList($params = array()) {
         $collection_class = 'Phaxio\\' . $this->collection_class;
         return new $collection_class($this->phaxio, $params);
     }
 }