AfterShip/aftership-sdk-php

View on GitHub
src/Requestable.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace AfterShip;

interface Requestable
{
    public function send($method, $url, array $data = []);
}