Completed
Push — master ( 3a3759...49115f )
by Jakub
17:00
created

IMenuItemLinkRender

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
dl 0
loc 5
ccs 1
cts 1
cp 1
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
isApplicable() 0 1 ?
renderLink() 0 1 ?
getName() 0 1 ?
1
<?php
2
namespace Nexendrie\Menu;
3
4
/**
5
 * IMenuItemLinkRender
6
 *
7
 * @author Jakub Konečný
8
 */
9 1
interface IMenuItemLinkRender {
10
  public function isApplicable(string $link): bool;
11
  public function renderLink(string $link): string;
12
  public function getName(): string;
13
}
14
?>