ClientInterface
last analyzed

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 2
Bugs 0 Features 1
Metric Value
c 2
b 0
f 1
dl 0
loc 4

1 Method

Rating   Name   Duplication   Size   Complexity  
fetchUrl() 0 1 ?
1
<?php
2
3
namespace Vinelab\UrlShortener\Contracts;
4
5
/**
6
 * Interface ClientInterface.
7
 */
8
interface ClientInterface
9
{
10
    public function fetchUrl($url, $parameters = [], $json_formatted = true, $verb = 'get');
11
}
12