/** * Get instance of this object (CssJs) * * @return CssJs */ public static function getInst() { // @return Singleton if (is_null(self::$instance)) { self::$instance = new self(); } return self::$instance; }