DriverInterface
last analyzed

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
shorten() 0 1 ?
1
<?php
2
3
namespace Vinelab\UrlShortener\Contracts;
4
5
/**
6
 * Interface DriverInterface.
7
 */
8
interface DriverInterface
9
{
10
    public function shorten($url);
11
}
12