mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-10 21:08:41 +00:00
13 lines
174 B
PHP
Executable File
13 lines
174 B
PHP
Executable File
<?php
|
|
|
|
namespace Mpdf\Language;
|
|
|
|
interface ScriptToLanguageInterface
|
|
{
|
|
|
|
public function getLanguageByScript($script);
|
|
|
|
public function getLanguageDelimiters($language);
|
|
|
|
}
|