laravel-shop/src/Contracts/Chargable.php

11 lines
165 B
PHP
Raw Normal View History

2025-11-25 23:05:46 +00:00
<?php
namespace Blax\Shop\Contracts;
interface Chargable
{
public function getDefaultPaymentMethod(): ?string;
public function paymentMethods(): array;
}