mirror of
https://github.com/anikeen-com/id.git
synced 2026-03-14 06:06:18 +00:00
18 lines
281 B
PHP
18 lines
281 B
PHP
<?php
|
|
|
|
namespace Anikeen\Id\Resources;
|
|
|
|
use Anikeen\Id\Concerns\HasBillable;
|
|
|
|
class Countries extends BaseCollection
|
|
{
|
|
use HasBillable;
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function find(string $id): ?BaseResource
|
|
{
|
|
return null;
|
|
}
|
|
} |