├── Helper └── DebugHelper.php ├── LICENSE ├── Plugin └── Magento │ └── Framework │ ├── DataObjectPlugin.php │ └── Model │ └── AbstractModelPlugin.php ├── README.md ├── composer.json ├── etc ├── di.xml └── module.xml └── registration.php /Helper/DebugHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shkoliar/magento-debug-helper/HEAD/Helper/DebugHelper.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shkoliar/magento-debug-helper/HEAD/LICENSE -------------------------------------------------------------------------------- /Plugin/Magento/Framework/DataObjectPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shkoliar/magento-debug-helper/HEAD/Plugin/Magento/Framework/DataObjectPlugin.php -------------------------------------------------------------------------------- /Plugin/Magento/Framework/Model/AbstractModelPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shkoliar/magento-debug-helper/HEAD/Plugin/Magento/Framework/Model/AbstractModelPlugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shkoliar/magento-debug-helper/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shkoliar/magento-debug-helper/HEAD/composer.json -------------------------------------------------------------------------------- /etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shkoliar/magento-debug-helper/HEAD/etc/di.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shkoliar/magento-debug-helper/HEAD/etc/module.xml -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shkoliar/magento-debug-helper/HEAD/registration.php --------------------------------------------------------------------------------