21 lines
300 B
PHP
Raw Normal View History

2018-07-14 18:50:47 +02:00
<?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
{}
}