negundo-client/src/Transport/TransportInterface.php

8 lines
155 B
PHP
Raw Normal View History

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