From f8c6fa262c62cf1e20996825d4accd44c00d403c Mon Sep 17 00:00:00 2001 From: Chris Kankiewicz Date: Fri, 3 Aug 2018 22:52:25 -0700 Subject: [PATCH] Some docblock updates --- src/Config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Config.php b/src/Config.php index 09e5fd1..d1c7f84 100644 --- a/src/Config.php +++ b/src/Config.php @@ -16,7 +16,7 @@ class Config implements ArrayAccess, IteratorAggregate protected $config = []; /** - * Create a Config object. + * Create a new Config object. * * @param mixed $context Raw array of configuration options or path to a * configuration file or directory containing one or @@ -83,7 +83,7 @@ public function get($key, $default = null) } /** - * Check for the existance of a config item. + * Check for the existence of a configuration item. * * @param string $key Unique configuration option key *