mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-24 21:27:56 -05:00
11 lines
146 B
PHP
11 lines
146 B
PHP
<?php
|
|
|
|
require_once __DIR__ . '/I18nData.php';
|
|
|
|
interface I18nFileInterface {
|
|
|
|
public function load();
|
|
|
|
public function dump(I18nData $i18n);
|
|
}
|