* [MOD] Improved importing. Work in progress.

This commit is contained in:
nuxsmin
2018-02-21 18:12:29 +01:00
committed by Rubén Domínguez
parent 70029fbaed
commit 62e5f15576
15 changed files with 392 additions and 58 deletions

View File

@@ -57,15 +57,15 @@ class ClientData extends DataModelBase implements DataModelInterface
/**
* CustomerData constructor.
*
* @param int $customer_id
* @param string $customer_name
* @param string $customer_description
* @param int $id
* @param string $name
* @param string $description
*/
public function __construct($customer_id = null, $customer_name = null, $customer_description = null)
public function __construct($id = null, $name = null, $description = null)
{
$this->id = $customer_id;
$this->name = $customer_name;
$this->description = $customer_description;
$this->id = $id;
$this->name = $name;
$this->description = $description;
}
/**