11 lines
165 B
PHP
11 lines
165 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Blax\Shop\Contracts;
|
||
|
|
|
||
|
|
interface Chargable
|
||
|
|
{
|
||
|
|
public function getDefaultPaymentMethod(): ?string;
|
||
|
|
|
||
|
|
public function paymentMethods(): array;
|
||
|
|
}
|