Fixing style errors.

This commit is contained in:
stickler-ci 2022-08-15 13:19:16 +00:00
parent 0576f31592
commit 015f179acb

View File

@ -514,7 +514,8 @@ class BOM extends CommonObject
* @param $import_key * @param $import_key
* @return int * @return int
*/ */
public function addLine($fk_product, $qty, $qty_frozen = 0, $disable_stock_change = 0, $efficiency = 1.0, $position = -1, $fk_bom_child = null, $import_key = null){ public function addLine($fk_product, $qty, $qty_frozen = 0, $disable_stock_change = 0, $efficiency = 1.0, $position = -1, $fk_bom_child = null, $import_key = null)
{
global $mysoc, $conf, $langs, $user; global $mysoc, $conf, $langs, $user;
@ -588,12 +589,10 @@ class BOM extends CommonObject
$this->db->rollback(); $this->db->rollback();
return -2; return -2;
} }
} else { } else {
dol_syslog(get_class($this)."::addLine status of BOM must be Draft to allow use of ->addLine()", LOG_ERR); dol_syslog(get_class($this)."::addLine status of BOM must be Draft to allow use of ->addLine()", LOG_ERR);
return -3; return -3;
} }
} }
/** /**