mirror of
https://github.com/retailcrm/opencart-module.git
synced 2025-04-04 13:53:37 +03:00
Update RetailcrmHttpClient.php
This commit is contained in:
parent
2ba4aab65a
commit
71f15c930a
1 changed files with 4 additions and 4 deletions
|
@ -25,7 +25,7 @@ class RetailcrmHttpClient
|
|||
}
|
||||
|
||||
$this->url = $url;
|
||||
$this->defaultParameters = $defaultParameters;
|
||||
$this->defaultParameters = $defaultParameters;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -63,10 +63,10 @@ class RetailcrmHttpClient
|
|||
|
||||
$parameters = self::METHOD_GET === $method
|
||||
? array_merge($this->defaultParameters, $parameters, [
|
||||
'php_version' => function_exists('phpversion') ? phpversion() : '',
|
||||
'cms_source' => 'Opencart',
|
||||
'module_version' => ControllerExtensionModuleRetailcrm::VERSION_MODULE,
|
||||
'cms_source' => 'OpenCart',
|
||||
'cms_version' => VERSION,
|
||||
'php_version' => function_exists('phpversion') ? phpversion() : '',
|
||||
'module_version' => ControllerExtensionModuleRetailcrm::VERSION_MODULE,
|
||||
])
|
||||
: $parameters = array_merge($this->defaultParameters, $parameters);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue