mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
11 lines
159 B
PHP
11 lines
159 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Repositories;
|
||
|
|
|
||
|
|
class LangRepository extends BaseRepository
|
||
|
|
{
|
||
|
|
private static array $langToLocale = [
|
||
|
|
'Czech' => 'cs',
|
||
|
|
];
|
||
|
|
}
|