change private properties to protected

This commit is contained in:
Nicolas Le Goff
2012-02-15 19:32:18 +01:00
parent d94ce73f5c
commit 9dc47ffe39
9 changed files with 73 additions and 72 deletions

View File

@@ -20,32 +20,32 @@ class ValidationData
/**
* @var integer $id
*/
private $id;
protected $id;
/**
* @var boolean $agreement
*/
private $agreement;
protected $agreement;
/**
* @var text $note
*/
private $note;
protected $note;
/**
* @var datetime $updated
*/
private $updated;
protected $updated;
/**
* @var Entities\ValidationParticipant
*/
private $participant;
protected $participant;
/**
* @var Entities\BasketElement
*/
private $basket_element;
protected $basket_element;
/**