web-base/Core/Objects/lang/LanguageModule.php

8 lines
128 B
PHP
Raw Normal View History

2020-02-09 23:02:19 +01:00
<?php
2022-11-18 18:06:46 +01:00
namespace Core\Objects\lang;
2020-06-19 17:16:32 +02:00
2020-04-03 15:56:04 +02:00
abstract class LanguageModule {
2020-02-09 23:02:19 +01:00
2020-04-03 15:56:04 +02:00
public abstract function getEntries(string $langCode);
}