mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2026-01-03 23:52:24 +01:00
function Comment Missing
This commit is contained in:
@@ -53,6 +53,11 @@ class ProductAttribute
|
||||
*/
|
||||
public $rang;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param DoliDB $db Database handler
|
||||
*/
|
||||
public function __construct(DoliDB $db)
|
||||
{
|
||||
global $conf;
|
||||
|
||||
@@ -52,8 +52,13 @@ class ProductAttributeValue
|
||||
*/
|
||||
public $value;
|
||||
|
||||
public function __construct(DoliDB $db)
|
||||
{
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param DoliDB $db Database handler
|
||||
*/
|
||||
public function __construct(DoliDB $db)
|
||||
{
|
||||
global $conf;
|
||||
|
||||
$this->db = $db;
|
||||
|
||||
@@ -70,7 +70,12 @@ class ProductCombination
|
||||
*/
|
||||
public $entity;
|
||||
|
||||
public function __construct(DoliDB $db)
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param DoliDB $db Database handler
|
||||
*/
|
||||
public function __construct(DoliDB $db)
|
||||
{
|
||||
global $conf;
|
||||
|
||||
|
||||
@@ -52,10 +52,15 @@ class ProductCombination2ValuePair
|
||||
*/
|
||||
public $fk_prod_attr_val;
|
||||
|
||||
public function __construct(DoliDB $db)
|
||||
{
|
||||
$this->db = $db;
|
||||
}
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param DoliDB $db Database handler
|
||||
*/
|
||||
public function __construct(DoliDB $db)
|
||||
{
|
||||
$this->db = $db;
|
||||
}
|
||||
|
||||
/**
|
||||
* Translates this class to a human-readable string
|
||||
|
||||
Reference in New Issue
Block a user