mirror of
https://github.com/kevinveenbirkenbach/coding-challenge-online-shop.git
synced 2025-04-22 13:12:26 +02:00
16 lines
233 B
PHP
16 lines
233 B
PHP
<?php
|
|
namespace repository\order;
|
|
|
|
use entity\order\OrderInterface as OrderEntityInterface;
|
|
|
|
/**
|
|
*
|
|
* @author kevinfrantz
|
|
*
|
|
*/
|
|
interface OrderInterface
|
|
{
|
|
public function saveOrder(OrderEntityInterface $order):bool;
|
|
}
|
|
|