Skip to content

Commit

Permalink
Doxygen
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Dec 27, 2014
1 parent 0496d81 commit 613d1b3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions htdocs/contrat/class/contrat.class.php
Expand Up @@ -59,11 +59,11 @@ class Contrat extends CommonObject
var $product;

var $user_author;
var $date_creation;
var $date_validation;
var $date_creation; // date of creation
var $date_validation; // date of last update

var $date_contrat;
var $date_cloture;
var $date_contrat; // date when contract was signed
var $date_cloture; // deprecated (we close contract lines, not a contract)

var $commercial_signature_id;
var $commercial_suivi_id;
Expand Down

1 comment on commit 613d1b3

@marcosgdf
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(Just as a tip: next time please use

/**
* Property description
* @var type
*/

This way IDE will correctly parse the documentation.

Please sign in to comment.