rathena / FluxCP

Missing function/class method doc comment PHP-D1002
Documentation
Minor
2 occurrences in this check
Doc comment missing for class method getAvailableLanguages
954		return is_null($sizes[$size]) ? $sizes['Small'] : $sizes[$size];
955	}
956
957	public static function getAvailableLanguages()958	{
959		$langs_available = array_diff(scandir(FLUX_LANG_DIR), array('..', '.'));
960
Doc comment missing for class method getItemSubType
674			return false;
675		}
676	}
677	public static function getItemSubType($id1, $id2)678	{
679		$subtype = "ItemSubTypes.$id1.$id2";
680		$result = self::config($subtype);