mirror of
https://github.com/kevinveenbirkenbach/coding-challenge-online-shop.git
synced 2026-01-10 17:22:13 +00:00
Added Controller draft
This commit is contained in:
20
src/controller/order/OrderInterface.php
Normal file
20
src/controller/order/OrderInterface.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
namespace controller\order;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
*
|
||||
*/
|
||||
interface OrderInterface
|
||||
{
|
||||
/**
|
||||
* Saves the order
|
||||
*/
|
||||
public function store():void;
|
||||
|
||||
public function addProduct():void;
|
||||
|
||||
public function showBasket():void;
|
||||
|
||||
public function selectPaymentMethod():void;
|
||||
}
|
||||
Reference in New Issue
Block a user