mirror of
https://github.com/kevinveenbirkenbach/coding-challenge-online-shop.git
synced 2025-09-09 11:27:13 +02:00
Added draft for get routing
This commit is contained in:
25
src/controller/order/Order.php
Normal file
25
src/controller/order/Order.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?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
|
||||
{}
|
||||
}
|
||||
|
Reference in New Issue
Block a user