UrlInterface
last analyzed

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 7
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
getUrl() 0 1 ?
1
<?php
2
declare(strict_types=1);
3
4
/**
5
 * File: UrlInterface.php
6
 *
7
 * @author      Maciej Sławik <[email protected]>
8
 * Github:      https://github.com/maciejslawik
9
 */
10
11
namespace MSlwk\ReactPhpPlayground\Api\Data;
12
13
/**
14
 * Interface UrlInterface
15
 * @package MSlwk\ReactPhpPlayground\Api\Data
16
 */
17
interface UrlInterface
18
{
19
    /**
20
     * @return string
21
     */
22
    public function getUrl(): string;
23
}
24