12 lines
344 B
PHP
Executable file
12 lines
344 B
PHP
Executable file
<?php
|
|
|
|
|
|
namespace Twilio\Http;
|
|
|
|
|
|
interface Client {
|
|
public function request(string $method, string $url,
|
|
array $params = [], array $data = [], array $headers = [],
|
|
string $user = null, string $password = null,
|
|
int $timeout = null): Response;
|
|
}
|