bubbstore/iugu-php-sdk

View on GitHub
src/bubbstore/Iugu/Contracts/CustomerInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace bubbstore\Iugu\Contracts;

interface CustomerInterface
{
    public function create(array $params);
    public function update($id, array $params);
    public function find($id);
    public function delete($id);
}