mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-09-03 03:38:52 +00:00
13 lines
195 B
PHP
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);
|
|
}
|