Phaxio/vendor/phaxio/phaxio/lib/Phaxio/Faxes.php
d6c2a24e
 <?php
 
 namespace Phaxio;
 
 class Faxes extends AbstractResources
 {
     protected $collection_class = 'FaxCollection';
 
     public function create($params) {
         return Fax::create($this->phaxio, $params);
     }
 
     public function init($id) {
         return Fax::init($this->phaxio, $id);
     }
 }