Added pay method to PaymentInterface

This commit is contained in:
Kevin Frantz 2018-07-14 00:17:08 +02:00
parent 6fcef40e10
commit afa03052a7

View File

@ -1,6 +1,8 @@
<?php
namespace entity\payment;
use entity\order\OrderInterface;
/**
*
* @author kevinfrantz
@ -8,5 +10,6 @@ namespace entity\payment;
*/
interface PaymentInterface
{
public function pay(OrderInterface $order):void;
}