From: Roland Häder Date: Wed, 2 Mar 2022 02:55:41 +0000 (+0100) Subject: Continued: X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=feb533c848a85fb7c2aa64841515ab68f66ceece Continued: - ignored patch/diff files - added type-hints Signed-off-by: Roland Häder --- diff --git a/.gitignore b/.gitignore index cf01b078..6e253c37 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ +/*.log +/*.diff +/*.path /contrib/chash/chash.pos /contrib/lfdb2/*.bin* /contrib/lfdb2/*.out* @@ -19,4 +22,3 @@ /reports/ /vendor/ /phpunit.xml -/*.log diff --git a/framework/main/classes/feature/class_FrameworkFeature.php b/framework/main/classes/feature/class_FrameworkFeature.php index 0f67a15b..0557ce1b 100644 --- a/framework/main/classes/feature/class_FrameworkFeature.php +++ b/framework/main/classes/feature/class_FrameworkFeature.php @@ -74,7 +74,7 @@ class FrameworkFeature extends BaseFrameworkSystem { * @param $featureName Name of the feature to be checked * @return $isEnabled Whether the given feature is enabled */ - public static function isFeatureEnabled ($featureName) { + public static function isFeatureEnabled (string $featureName) { // Is the cache set? if (!isset(self::$enabledFeatures[$featureName]['is_enabled'])) { // Generate config key @@ -98,7 +98,7 @@ class FrameworkFeature extends BaseFrameworkSystem { * @param $featureName Name of the feature to be checked on availability * @return $isAvailable Whether the given feature is available */ - public static function isFeatureAvailable ($featureName) { + public static function isFeatureAvailable (string $featureName) { // Is the cache set? //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('FRAMEWORK-FEATURE: featureName=%s - CALLED!', $featureName)); if (!isset(self::$enabledFeatures[$featureName]['is_available'])) {