Continued:
authorRoland Häder <roland@mxchange.org>
Wed, 2 Mar 2022 02:55:41 +0000 (03:55 +0100)
committerRoland Häder <roland@mxchange.org>
Wed, 2 Mar 2022 02:55:41 +0000 (03:55 +0100)
- ignored patch/diff files
- added type-hints

Signed-off-by: Roland Häder <roland@mxchange.org>
.gitignore
framework/main/classes/feature/class_FrameworkFeature.php

index cf01b0786f89e580d1ce5028fed49dce71dbd5dd..6e253c37ff167a59fb3d59f85a992eddca377a88 100644 (file)
@@ -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
index 0f67a15be50cb0c1a15dfdb12126d6ad73f824de..0557ce1b9ef582fab50e923b47d029ecb455973e 100644 (file)
@@ -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'])) {