22 lines
481 B
PHP
22 lines
481 B
PHP
<?php
|
|
|
|
namespace Core\Configuration;
|
|
|
|
/**
|
|
* Class Configurations
|
|
* @package Core\Configuration
|
|
* @author Romano Schoonheim https://github.com/romano1996
|
|
*/
|
|
class Configurations
|
|
{
|
|
/**
|
|
* Concerns:
|
|
* -> Loading configuration files
|
|
* - Scan directory for files.
|
|
* - Filtering none config / php files.
|
|
* - Creating assoc array.
|
|
* -> Storing assoc array to this object.
|
|
* -> Accessing configurations based on "paths" application.something For example.
|
|
*/
|
|
}
|