Fixing style errors.

This commit is contained in:
stickler-ci 2020-09-14 08:48:04 +00:00
parent e98ae029e3
commit 75a9678086
2 changed files with 5 additions and 5 deletions

View File

@ -169,7 +169,7 @@ class Setup extends DolibarrApi
return $list;
}
/**
* Get the list of states.
*
@ -240,7 +240,7 @@ class Setup extends DolibarrApi
return $list;
}
/**
* Get state by ID.
*
@ -397,7 +397,7 @@ class Setup extends DolibarrApi
{
return $this->_fetchCcountry('', '', $iso, $lang);
}
/**
* Get state.
*

View File

@ -168,9 +168,9 @@ class Cstate // extends CommonObject
$this->id = $obj->rowid;
$this->code_departement = $obj->code_departement; //deprecated
$this->code = $obj->code_departement;
$this->code = $obj->code_departement;
$this->nom = $obj->nom; //deprecated
$this->name = $obj->nom;
$this->name = $obj->nom;
$this->active = $obj->active;
}
$this->db->free($resql);