* [ADD] Unit testing. Work in progress

* [MOD] Code refactoring and minor bugfixes
This commit is contained in:
nuxsmin
2018-07-02 01:18:41 +02:00
parent ae8f6ff7fe
commit e78f853a79
50 changed files with 2139 additions and 1808 deletions

View File

@@ -34,7 +34,7 @@ class FileExtData extends FileData
/**
* @var string
*/
public $customerName = '';
public $clientName = '';
/**
* @var string
*/
@@ -43,17 +43,17 @@ class FileExtData extends FileData
/**
* @return string
*/
public function getCustomerName()
public function getClientName()
{
return $this->customerName;
return $this->clientName;
}
/**
* @param string $customerName
* @param string $clientName
*/
public function setCustomerName($customerName)
public function setClientName($clientName)
{
$this->customerName = $customerName;
$this->clientName = $clientName;
}
/**