Skip to content

Commit

Permalink
Merge pull request #28882 from mdeweerd/typing/commonobject/fields
Browse files Browse the repository at this point in the history
Fix Typing on $fields for 2nd class in file
  • Loading branch information
eldy authored Mar 15, 2024
2 parents 5fadea4 + 61e05a9 commit dab45ad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion htdocs/bom/class/bom.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -1714,7 +1714,7 @@ class BOMLine extends CommonObjectLine

// BEGIN MODULEBUILDER PROPERTIES
/**
* @var array Array with all fields and their property. Do not use it as a static var. It may be modified by constructor.
* @var array<string,array{type:string,label:string,enabled:int<0,2>|string,position:int,notnull:int,visible:int,noteditable?:int,default?:string,index?:int,foreignkey?:string,searchall?:int,isameasure?:int,css?:string,csslist?:string,help?:string,showoncombobox?:int,disabled?:int,arrayofkeyval?:array<int,string>,comment?:string}> Array with all fields and their property. Do not use it as a static var. It may be modified by constructor.
*/
public $fields = array(
'rowid' => array('type' => 'integer', 'label' => 'LineID', 'enabled' => 1, 'visible' => -1, 'position' => 1, 'notnull' => 1, 'index' => 1, 'comment' => "Id",),
Expand Down
8 changes: 4 additions & 4 deletions htdocs/contrat/class/contrat.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -290,17 +290,17 @@ class Contrat extends CommonObject
/*
* Signed by sender
*/
CONST STATUS_SIGNED_SENDER = 1;
const STATUS_SIGNED_SENDER = 1;

/*
* Signed by receiver
*/
CONST STATUS_SIGNED_RECEIVER = 2;
const STATUS_SIGNED_RECEIVER = 2;

/*
* Signed by all
*/
CONST STATUS_SIGNED_ALL = 9; // To handle future kind of signature (ex: tripartite contract)
const STATUS_SIGNED_ALL = 9; // To handle future kind of signature (ex: tripartite contract)


/**
Expand Down Expand Up @@ -3148,7 +3148,7 @@ class ContratLigne extends CommonObjectLine

// BEGIN MODULEBUILDER PROPERTIES
/**
* @var array Array with all fields and their property. Do not use it as a static var. It may be modified by constructor.
* @var array<string,array{type:string,label:string,enabled:int<0,2>|string,position:int,notnull:int,visible:int,noteditable?:int,default?:string,index?:int,foreignkey?:string,searchall?:int,isameasure?:int,css?:string,csslist?:string,help?:string,showoncombobox?:int,disabled?:int,arrayofkeyval?:array<int,string>,comment?:string}> Array with all fields and their property. Do not use it as a static var. It may be modified by constructor.
*/
public $fields = array(
'rowid' => array('type' => 'integer', 'label' => 'TechnicalID', 'enabled' => 1, 'visible' => -1, 'notnull' => 1, 'position' => 10),
Expand Down

0 comments on commit dab45ad

Please sign in to comment.