@teqfw/core
Version:
Core functionalities for plugin scanning, local configuration management, and command-line utilities for building modern web applications with the Tequila Framework.
18 lines (17 loc) • 358 B
JavaScript
/**
* Abstraction of proxies to wrap objects.
*
* This is documentation only code (not executable).
*
* @interface
*/
export default class TeqFw_Core_Shared_Api_Di_Proxy {
/**
* Wraps the origin object and returns the wrapped object.
* @param {*} origin
* @returns {*}
*/
wrapOrigin(origin) {
return origin;
}
}