From 3babad32e02c56df354a75f24f1f0e6291a6c4fc Mon Sep 17 00:00:00 2001 From: Awilum Date: Sun, 24 May 2020 18:38:47 +0300 Subject: [PATCH] feat(core): code fix/udpate of Config API #428 --- src/flextype/core/Config/Config.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/flextype/core/Config/Config.php b/src/flextype/core/Config/Config.php index 80e5cc83..26b6c26a 100644 --- a/src/flextype/core/Config/Config.php +++ b/src/flextype/core/Config/Config.php @@ -30,7 +30,7 @@ class Config } /** - * Get key value from the config + * Get itme from the config * * @param string $config Config namespace. * @param string $key The key of the config item to get. @@ -48,7 +48,7 @@ class Config } /** - * Create new config key + * Create new config item * * @param string $config Config namespace. * @param string $key The key of the config item to get. @@ -76,7 +76,7 @@ class Config } /** - * Update config key + * Update config item * * @param string $config Config namespace. * @param string $key The key of the config item to get. @@ -104,7 +104,7 @@ class Config } /** - * Delete config key + * Delete config item * * @param string $config Config namespace. * @param string $key The key of the config item to get. @@ -131,7 +131,7 @@ class Config } /** - * Checks if an config key with this key name is in the config. + * Checks if an config item with this key name is in the config. * * @param string $config Config namespace. * @param string $key The key of the config item to get.