client = $client; $this->method = $method; $this->context = \Context::getContext(); $this->module = \Module::getInstanceByName($method->name); $this->formatter = new FormatterPaypal(); } /** * @return array */ protected function getHeaders() { $headers = [ 'PayPal-Partner-Attribution-Id' => $this->method->getPaypalPartnerId() ]; return $headers; } abstract public function execute(); }