mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-17 15:03:25 +00:00
change private properties to protected
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user