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

IMenuItemLinkRender::isApplicable()

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
ccs 0
cts 0
cp 0
c 0
b 0
f 0
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
?>