mirror of
https://github.com/kevinveenbirkenbach/coding-challenge-online-shop.git
synced 2025-04-22 13:12:26 +02:00
14 lines
153 B
PHP
14 lines
153 B
PHP
<?php
|
|
namespace controller\standart;
|
|
|
|
/**
|
|
*
|
|
* @author kevinfrantz
|
|
*
|
|
*/
|
|
interface StandartInterface
|
|
{
|
|
public function homepage():void;
|
|
}
|
|
|