mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 10:41:40 +09:00
Fix syntax incompatible with PHP 5.3
This commit is contained in:
parent
f68e6118bc
commit
f1e90df660
1 changed files with 3 additions and 3 deletions
|
|
@ -10,14 +10,14 @@ class Lang
|
|||
/**
|
||||
* Instances are stored here.
|
||||
*/
|
||||
protected static $_instances = [];
|
||||
protected static $_instances = array();
|
||||
|
||||
/**
|
||||
* Configuration.
|
||||
*/
|
||||
protected $_language;
|
||||
protected $_loaded_directories = [];
|
||||
protected $_loaded_files = [];
|
||||
protected $_loaded_directories = array();
|
||||
protected $_loaded_files = array();
|
||||
|
||||
/**
|
||||
* This method returns the cached instance of a language.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue