15 lines
247 B
PHP
15 lines
247 B
PHP
<?php
|
|
|
|
namespace App\Services\Payment;
|
|
|
|
use App\Contracts\PaymentGateway;
|
|
use App\Models\Order;
|
|
|
|
class CodPaymentGateway implements PaymentGateway
|
|
{
|
|
public function charge(Order $order)
|
|
{
|
|
// TODO: Implement charge() method
|
|
}
|
|
}
|