negundo-client/src/Transport/TransportInterface.php

8 lines
155 B
PHP

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