14 lines
243 B
PHP
14 lines
243 B
PHP
<?php
|
|
|
|
use App\Modules\TurkmenPassport\Repositories\TurkmenPassportRepository;
|
|
|
|
/**
|
|
* Turkmen passport values
|
|
*
|
|
* @return array<string, string>
|
|
*/
|
|
function turkmenPassportValues(): array
|
|
{
|
|
return TurkmenPassportRepository::values();
|
|
}
|