예제 #1
0
 /**
  * Instantiates framework and plugin modules
  *
  * Kind of like an app container
  *
  * @param  string  $module   The module to load
  * @param  array   $args     Constructor arguments
  * @param  boolean $isGlobal If the module is part of the framework
  * @return object            An instance of the module
  */
 public function make($module)
 {
     $instance = $this->container->make($module);
     return $instance;
 }