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