Fix lint errors

This commit is contained in:
Tobias Sekan 2020-03-06 11:49:49 +01:00 committed by GitHub
parent 03b8c86c06
commit 8c115a07b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1513,45 +1513,45 @@ class TableRow
/** /**
* The id of this project (need for "unlink" action) * The id of this project (need for "unlink" action)
*/ */
var $id; public $id;
/** /**
* The reference of this object (only for sorting) * The reference of this object (only for sorting)
*/ */
var $ref; public $ref;
/** /**
* The visible text for the reference (string or html) * The visible text for the reference (string or html)
*/ */
var $ref_text; public $ref_text;
/** /**
* The related user or societe of the object * The related user or societe of the object
*/ */
var $user; public $user;
/** /**
* The ht amount of this object (only for sorting) * The ht amount of this object (only for sorting)
*/ */
var $amount_ht; public $amount_ht;
/** /**
* The visible text for the $amount_ht (string or html) * The visible text for the $amount_ht (string or html)
*/ */
var $amount_ht_text; public $amount_ht_text;
/** /**
* The ttc amount of this object (only for sorting) * The ttc amount of this object (only for sorting)
*/ */
var $amount_ttc; public $amount_ttc;
/** /**
* The visible text for the $amount_ttc (string or html) * The visible text for the $amount_ttc (string or html)
*/ */
var $amount_ttc_text; public $amount_ttc_text;
/** /**
* The status of the object (string or html) * The status of the object (string or html)
*/ */
var $status; public $status;
} }