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