mirror of
https://github.com/kevinveenbirkenbach/coding-challenge-online-shop.git
synced 2025-03-14 19:35:19 +01:00
26 lines
379 B
PHP
26 lines
379 B
PHP
|
<?php
|
||
|
namespace controller\order;
|
||
|
|
||
|
use controller\AbstractController;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @author kevinfrantz
|
||
|
*
|
||
|
*/
|
||
|
final class Order extends AbstractController implements OrderInterface
|
||
|
{
|
||
|
public function addProduct(): void
|
||
|
{}
|
||
|
|
||
|
public function store(): void
|
||
|
{}
|
||
|
|
||
|
public function basket(): void
|
||
|
{}
|
||
|
|
||
|
public function selectPaymentMethod(): void
|
||
|
{}
|
||
|
}
|
||
|
|