1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- declare(strict_types=1);
- namespace Hyperf\Contract;
- interface TranslatorLoaderInterface
- {
-
- public function load(string $locale, string $group, ?string $namespace = null): array;
-
- public function addNamespace(string $namespace, string $hint);
-
- public function addJsonPath(string $path);
-
- public function namespaces(): array;
- }
|