mirror of
https://github.com/kevinveenbirkenbach/coding-challenge-online-shop.git
synced 2025-03-14 19:35:19 +01:00
29 lines
375 B
PHP
29 lines
375 B
PHP
|
<?php
|
||
|
namespace router;
|
||
|
|
||
|
use core\CoreInterface;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @author kevinfrantz
|
||
|
*
|
||
|
*/
|
||
|
final class Router implements RouterInterface
|
||
|
{
|
||
|
public function route()
|
||
|
{
|
||
|
echo "Hello World!";
|
||
|
}
|
||
|
|
||
|
public function setGet(array $get)
|
||
|
{}
|
||
|
|
||
|
public function setCore(CoreInterface $core)
|
||
|
{}
|
||
|
|
||
|
public function setPost(array $post): void
|
||
|
{}
|
||
|
|
||
|
}
|
||
|
|