Lang class

This commit is contained in:
Ibnu Maksum
2022-09-10 16:08:10 +07:00
parent a7fd02df12
commit 9154c10c45
2 changed files with 11 additions and 6 deletions

11
system/autoload/Lang.php Normal file
View File

@ -0,0 +1,11 @@
<?php
/**
* PHP Mikrotik Billing (https://ibnux.github.io/phpmixbill/)
**/
class Lang {
public static function T($var) {
return Lang($var);
}
}