aboutsummaryrefslogtreecommitdiffstats
path: root/core/namespace/Language.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/namespace/Language.php')
-rw-r--r--core/namespace/Language.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/namespace/Language.php b/core/namespace/Language.php
index a2facb0..804f3d5 100644
--- a/core/namespace/Language.php
+++ b/core/namespace/Language.php
@@ -18,7 +18,7 @@ class Language {
# Load another language file
#===============================================================================
public function load($filename) {
- if(file_exists($filename) AND is_readable($filename)) {
+ if(file_exists($filename) and is_readable($filename)) {
require $filename;
$this->text = array_merge($this->text, $LANGUAGE ?? []);
}
@@ -34,7 +34,7 @@ class Language {
#===============================================================================
# Return language string with included arguments
#===============================================================================
- public function text($name, $arguments = NULL): string {
+ public function text($name, $arguments = null): string {
if(!isset($this->text[$name])) {
return "{{$name}}";
}