Fix syntax incompatible with PHP 5.3

This commit is contained in:
Kijin Sung 2016-01-27 17:51:59 +09:00
parent f68e6118bc
commit f1e90df660

View file

@ -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.