Enhanced entities

This commit is contained in:
Romain Neutron
2011-12-15 18:06:32 +01:00
parent fa9eaf865e
commit cb5ea9ce34
6 changed files with 63 additions and 3 deletions

View File

@@ -112,4 +112,29 @@ class ValidationParticipant
{
return $this->session;
}
/**
* @var boolean $is_aware
*/
private $is_aware = false;
/**
* Set is_aware
*
* @param boolean $isAware
*/
public function setIsAware($isAware)
{
$this->is_aware = $isAware;
}
/**
* Get is_aware
*
* @return boolean
*/
public function getIsAware()
{
return $this->is_aware;
}
}