Example #1
0
 /**
  * Instance generator of the Object
  * @param  array  $config the config file found at app.php
  * @return Core         The generated config instance
  */
 public static function make($config = array())
 {
     self::$instance = new Core();
     self::$instance->config = $config;
     return self::$instance;
 }