Fix stickler

This commit is contained in:
Alexandre SPANGARO 2019-08-27 16:37:14 +02:00
parent 958361b45e
commit 47b9af09a5

View File

@ -36,18 +36,18 @@ class mod_codecompta_digitaria extends ModeleAccountancyCode
* @deprecated * @deprecated
* @see name * @see name
*/ */
var $nom='Digitaria'; public $nom='Digitaria';
/** /**
* @var string model name * @var string model name
*/ */
var $name='Digitaria'; public $name='Digitaria';
/** /**
* Dolibarr version of the loaded document * Dolibarr version of the loaded document
* @var string * @var string
*/ */
var $version='dolibarr'; // 'development', 'experimental', 'dolibarr' public $version='dolibarr'; // 'development', 'experimental', 'dolibarr'
public $prefixcustomeraccountancycode; public $prefixcustomeraccountancycode;
@ -56,7 +56,7 @@ class mod_codecompta_digitaria extends ModeleAccountancyCode
/** /**
* Constructor * Constructor
*/ */
function __construct() public function __construct()
{ {
global $conf, $langs; global $conf, $langs;
if (! isset($conf->global->COMPANY_DIGITARIA_MASK_CUSTOMER) || trim($conf->global->COMPANY_DIGITARIA_MASK_CUSTOMER) == '') $conf->global->COMPANY_DIGITARIA_MASK_CUSTOMER='411'; if (! isset($conf->global->COMPANY_DIGITARIA_MASK_CUSTOMER) || trim($conf->global->COMPANY_DIGITARIA_MASK_CUSTOMER) == '') $conf->global->COMPANY_DIGITARIA_MASK_CUSTOMER='411';
@ -76,7 +76,7 @@ class mod_codecompta_digitaria extends ModeleAccountancyCode
* @param Translate $langs Object langs * @param Translate $langs Object langs
* @return string Description of module * @return string Description of module
*/ */
function info($langs) public function info($langs)
{ {
global $conf, $form; global $conf, $form;
@ -119,7 +119,7 @@ class mod_codecompta_digitaria extends ModeleAccountancyCode
* @param int $type Type of third party (1:customer, 2:supplier, -1:autodetect) * @param int $type Type of third party (1:customer, 2:supplier, -1:autodetect)
* @return string Example * @return string Example
*/ */
function getExample($langs, $objsoc=0, $type=-1) public function getExample($langs, $objsoc=0, $type=-1)
{ {
global $mysoc; global $mysoc;
@ -143,7 +143,7 @@ class mod_codecompta_digitaria extends ModeleAccountancyCode
* @param int $type 'customer' or 'supplier' * @param int $type 'customer' or 'supplier'
* @return int >=0 if OK, <0 if KO * @return int >=0 if OK, <0 if KO
*/ */
function get_code($db, $societe, $type='') public function get_code($db, $societe, $type='')
{ {
// phpcs:enable // phpcs:enable
$i = 0; $i = 0;
@ -224,12 +224,12 @@ class mod_codecompta_digitaria extends ModeleAccountancyCode
/** /**
* Check accountancy account code for a third party into this->code * Check accountancy account code for a third party into this->code
* *
* @param DoliDB $db Database handler * @param DoliDB $db Database handler
* @param Societe $societe Third party object * @param string $code Code of third party
* @param int $type 'customer' or 'supplier' * @param int $type 'customer' or 'supplier'
* @return int >=0 if OK, <0 if KO * @return int >=0 if OK, <0 if KO
*/ */
function checkIfAccountancyCodeIsAlreadyUsed($db, $code, $type='') public function checkIfAccountancyCodeIsAlreadyUsed($db, $code, $type='')
{ {
if ($type == 'supplier') if ($type == 'supplier')
{ {