mirror of
https://github.com/kevinveenbirkenbach/coding-challenge-online-shop.git
synced 2025-06-25 23:45:30 +02:00
18 lines
226 B
PHP
18 lines
226 B
PHP
<?php
|
|
namespace router\link;
|
|
|
|
/**
|
|
*
|
|
* @author kevinfrantz
|
|
*
|
|
*/
|
|
interface LinkInterface
|
|
{
|
|
public function getName():string;
|
|
|
|
public function getUrl():string;
|
|
|
|
public function isActive():bool;
|
|
}
|
|
|