Add/improve code documentation

This commit is contained in:
Dale Davies
2022-02-04 11:52:57 +00:00
parent 3c5d79df97
commit 5dd3c6e852
11 changed files with 101 additions and 5 deletions

View File

@@ -4,6 +4,16 @@ namespace Jump;
use Exception;
/**
* Load, parse and enumerate all configuration paramaters requires throughout
* the application. Validates the config.php on load to ensure required params
* are all present.
*
* Provides a simple interface for retriving config paramaters once initialised.
*
* @author Dale Davies <dale@daledavies.co.uk>
* @license MIT
*/
class Config {
private \PHLAK\Config\Config $config;