tomaj/invoice-client

View on GitHub
src/Transport/TransportInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Invoice\Transport;

interface TransportInterface
{
    /**
     * @param string $url
     * @param string $apiKey
     * @param string $payload
     * @param string $method
     * @return Result
     */
    public function call($url, $apiKey, $payload, $method = 'post');
}