Implemented Navigation

This commit is contained in:
Kevin Frantz
2018-07-15 08:31:24 +02:00
parent 401fa64733
commit d480467615
14 changed files with 227 additions and 102 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace router\link;
/**
*
* @author kevinfrantz
*
*/
interface LinkInterface
{
public function getName():string;
public function getUrl():string;
public function isActive():bool;
}