Example #1
0
 /**
  * Construct
  * 
  * @param Config $config
  * @param Router $router
  * @param View $view
  */
 public function __construct(Config $config, Router $router, View $view)
 {
     $this->config = $config;
     $this->router = $router;
     $this->view = $view;
     Assets::setRouter($this->router);
 }