How to call a function from one module to another Magento 2
I try to call a function from a module A to a module B here is the module A code namespace AEpaymentModel; class Etransactions { public function customPayment{ return "test"; } and module b code namespace BPaymentControllerIndex; class Payment extends…