mirror of
https://github.com/kevinveenbirkenbach/coding-challenge-online-shop.git
synced 2025-03-14 19:35:19 +01:00
21 lines
300 B
PHP
21 lines
300 B
PHP
|
<?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
|
||
|
{}
|
||
|
|
||
|
}
|
||
|
|