opsdash-app/opsdash/tests/php/stubs/OCP/IL10N.php
2026-03-07 11:50:43 +07:00

9 lines
135 B
PHP

<?php
declare(strict_types=1);
namespace OCP;
interface IL10N {
public function t(string $text, array $parameters = []): string;
}