Added draft for get routing

This commit is contained in:
Kevin Frantz
2018-07-14 18:50:47 +02:00
parent ceb83e20f1
commit d966cbc35d
9 changed files with 144 additions and 36 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace controller\product;
use controller\AbstractController;
/**
*
* @author kevinfrantz
*
*/
final class Product extends AbstractController implements ProductInterface
{
public function list(): void
{}
public function colorFilter(string $color): void
{}
}