public function __construct()
 {
     parent::__construct();
     if (!$this->init) {
         $this->init = TRUE;
         $this->load();
     }
 }
 /**
  * @param string $library
  *
  * @return mixed
  */
 function Library($library = 'codefight', $params = NULL)
 {
     $MY_Library = new MY_Library();
     return $MY_Library->Library($library, $params);
 }