Browse Source

Change Config::load to private.

Taylor Otwell 13 years ago
parent
commit
7a4016b623
1 changed files with 1 additions and 1 deletions
  1. 1 1
      system/config.php

+ 1 - 1
system/config.php

@@ -100,7 +100,7 @@ class Config {
 	 * @param  string  $module
 	 * @return bool
 	 */
-	public static function load($module, $file)
+	private static function load($module, $file)
 	{
 		if (isset(static::$items[$module]) and array_key_exists($file, static::$items[$module])) return true;