14 lines
186 B
PHP
14 lines
186 B
PHP
<?php
|
|
|
|
use App\Modules\Region\Repositories\RegionRepository;
|
|
|
|
/**
|
|
* Regions
|
|
*
|
|
* @return array<string, string>
|
|
*/
|
|
function regions(): array
|
|
{
|
|
return RegionRepository::values();
|
|
}
|