From 8c115a07b05d390bcff88acb701ae664eae2cc00 Mon Sep 17 00:00:00 2001 From: Tobias Sekan Date: Fri, 6 Mar 2020 11:49:49 +0100 Subject: [PATCH] Fix lint errors --- htdocs/projet/element.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/htdocs/projet/element.php b/htdocs/projet/element.php index 44aafed21ed..69bbceea47a 100644 --- a/htdocs/projet/element.php +++ b/htdocs/projet/element.php @@ -1513,45 +1513,45 @@ class TableRow /** * The id of this project (need for "unlink" action) */ - var $id; + public $id; /** * The reference of this object (only for sorting) */ - var $ref; + public $ref; /** * The visible text for the reference (string or html) */ - var $ref_text; + public $ref_text; /** * The related user or societe of the object */ - var $user; + public $user; /** * 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) */ - var $amount_ht_text; + public $amount_ht_text; /** * 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) */ - var $amount_ttc_text; + public $amount_ttc_text; /** * The status of the object (string or html) */ - var $status; + public $status; }