Files
newznab-tmux/libs/Moinax/TVDB/Http/HttpClient.php
T
2015-10-04 23:10:10 +02:00

13 lines
195 B
PHP

<?php
namespace libs\Moinax\TVDB\Http;
interface HttpClient
{
const POST = 'post';
const GET = 'get';
public function fetch($url, array $params = array(), $method = self::GET);
}