mirror of
https://github.com/anikeen-com/id.git
synced 2026-03-13 21:56:14 +00:00
13 lines
187 B
PHP
13 lines
187 B
PHP
<?php
|
|
|
|
namespace Anikeen\Id\Resources;
|
|
|
|
use Anikeen\Id\Concerns\HasBillable;
|
|
|
|
/**
|
|
* @property string $id
|
|
*/
|
|
class PaymentMethod extends BaseResource
|
|
{
|
|
use HasBillable;
|
|
} |