| 1 | <?php |
||
| 10 | class Builder |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Get the trnaslation. |
||
| 14 | * |
||
| 15 | * @param string $string |
||
| 16 | * |
||
| 17 | * @return object |
||
| 18 | */ |
||
| 19 | public static function trans($string) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Get the languages used. |
||
| 35 | * |
||
| 36 | * @return array |
||
| 37 | */ |
||
| 38 | public static function languages() |
||
| 47 | |||
| 48 | /** |
||
| 49 | * Get all the available languages. |
||
| 50 | * |
||
| 51 | * @return array |
||
| 52 | */ |
||
| 53 | public static function allLanguages() |
||
| 57 | } |
||
| 58 |