mirror of
				https://github.com/kevinveenbirkenbach/coding-challenge-online-shop.git
				synced 2025-11-04 11:07:58 +00:00 
			
		
		
		
	Added pay method to PaymentInterface
This commit is contained in:
		@@ -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;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user