negundo-client/src/Transport/TransportInterface.php
2023-11-01 11:29:08 -04:00

8 lines
155 B
PHP

<?php
namespace Negundo\Client\Transport;
interface TransportInterface {
public function push(string $url, array $data) : object|null|bool;
}