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