negundo-client/src/Transport/TransportInterface.php

8 lines
147 B
PHP
Raw Normal View History

2023-03-29 13:52:15 +00:00
<?php
namespace Negundo\Client\Transport;
interface TransportInterface {
public function push(string $url, array $data) : ? object;
}