modern-events-calendar-lite/app/api/Twilio/Http/Client.php

13 lines
344 B
PHP
Raw Normal View History

2024-10-15 12:04:03 +02:00
<?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;
}