mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 13:24:25 +00:00
Renaming private varialbes of Entity/Person : history -> accompanyingPeriods, proxyHistoryOpenState -> proxyAccompanyingPeriodOpenState
This commit is contained in:
parent
1071d5ff62
commit
ef6fb61d4d
@ -87,13 +87,13 @@ class Person {
|
||||
*
|
||||
* @var \Doctrine\Common\Collections\ArrayCollection
|
||||
*/
|
||||
private $history;
|
||||
private $accompanyingPeriods;
|
||||
|
||||
/**
|
||||
*
|
||||
* @var boolean
|
||||
*/
|
||||
private $proxyHistoryOpenState = false;
|
||||
private $proxyAccompanyingPeriodOpenState = false;
|
||||
|
||||
|
||||
/**
|
||||
@ -114,7 +114,7 @@ class Person {
|
||||
private $spokenLanguages;
|
||||
|
||||
public function __construct(\DateTime $opening = null) {
|
||||
$this->history = new ArrayCollection();
|
||||
$this->accompanyingPeriods = new ArrayCollection();
|
||||
$this->spokenLanguages = new ArrayCollection();
|
||||
|
||||
if ($opening === null) {
|
||||
@ -129,13 +129,13 @@ class Person {
|
||||
* @param \Chill\PersonBundle\Entity\AccompanyingPeriod $period
|
||||
* @uses AccompanyingPeriod::setPerson
|
||||
*/
|
||||
public function addAccompanyingPeriod(AccompanyingPeriod $period) {
|
||||
$period->setPerson($this);
|
||||
$this->history->add($period);
|
||||
public function addAccompanyingPeriod(AccompanyingPeriod $accompanyingPeriod) {
|
||||
$accompanyingPeriod->setPerson($this);
|
||||
$this->accompanyingPeriods->add($accompanyingPeriod);
|
||||
}
|
||||
|
||||
public function removeHistoryFile(AccompanyingPeriod $history) {
|
||||
$this->history->remove($history);
|
||||
public function removeAccompanyingPeriod(AccompanyingPeriod $accompanyingPeriod) {
|
||||
$this->accompanyingPeriods->remove($accompanyingPeriod);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -151,7 +151,7 @@ class Person {
|
||||
* @param \Chill\PersonBundle\Entity\AccompanyingPeriod $accompanyingPeriod
|
||||
*/
|
||||
public function open(AccompanyingPeriod $accompanyingPeriod) {
|
||||
$this->proxyHistoryOpenState = true;
|
||||
$this->proxyAccompanyingPeriodOpenState = true;
|
||||
$this->addAccompanyingPeriod($accompanyingPeriod);
|
||||
}
|
||||
|
||||
@ -169,7 +169,7 @@ class Person {
|
||||
*/
|
||||
public function close(AccompanyingPeriod $accompanyingPeriod)
|
||||
{
|
||||
$this->proxyHistoryOpenState = false;
|
||||
$this->proxyAccompanyingPeriodOpenState = false;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -177,11 +177,11 @@ class Person {
|
||||
* @return null|AccompanyingPeriod
|
||||
*/
|
||||
public function getCurrentAccompanyingPeriod() {
|
||||
if ($this->proxyHistoryOpenState === false) {
|
||||
if ($this->proxyAccompanyingPeriodOpenState === false) {
|
||||
return null;
|
||||
}
|
||||
|
||||
foreach ($this->history as $period) {
|
||||
foreach ($this->accompanyingPeriods as $period) {
|
||||
if ($period->isOpen()) {
|
||||
return $period;
|
||||
}
|
||||
@ -193,7 +193,7 @@ class Person {
|
||||
* @return \Doctrine\Common\Collections\ArrayCollection
|
||||
*/
|
||||
public function getAccompanyingPeriods() {
|
||||
return $this->history;
|
||||
return $this->accompanyingPeriods;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -236,7 +236,7 @@ class Person {
|
||||
}
|
||||
|
||||
public function isOpen() {
|
||||
return $this->proxyHistoryOpenState;
|
||||
return $this->proxyAccompanyingPeriodOpenState;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -18,8 +18,11 @@ Chill\PersonBundle\Entity\AccompanyingPeriod:
|
||||
manyToOne:
|
||||
person:
|
||||
targetEntity: Person
|
||||
inversedBy: history
|
||||
inversedBy: accompanyingPeriods
|
||||
cascade: [refresh]
|
||||
joinColumn:
|
||||
name: person_id
|
||||
referencedColumnName: id
|
||||
closingMotive:
|
||||
targetEntity: Chill\PersonBundle\Entity\AccompanyingPeriod\ClosingMotive
|
||||
nullable: true
|
||||
|
@ -34,7 +34,8 @@ Chill\PersonBundle\Entity\Person:
|
||||
default: ''
|
||||
email:
|
||||
type: text
|
||||
proxyHistoryOpenState:
|
||||
proxyAccompanyingPeriodOpenState:
|
||||
column: proxyHistoryOpenState
|
||||
type: boolean
|
||||
name: proxy_open
|
||||
cFData:
|
||||
@ -52,7 +53,7 @@ Chill\PersonBundle\Entity\Person:
|
||||
inversedBy: nationals
|
||||
nullable: true
|
||||
oneToMany:
|
||||
history:
|
||||
accompanyingPeriods:
|
||||
targetEntity: AccompanyingPeriod
|
||||
mappedBy: person
|
||||
cascade: [persist, remove, merge, detach]
|
||||
|
@ -25,7 +25,7 @@ Chill\PersonBundle\Entity\Person:
|
||||
genre:
|
||||
- NotNull:
|
||||
groups: [general, creation]
|
||||
history:
|
||||
accompanyingPeriods:
|
||||
- Valid:
|
||||
traverse: true
|
||||
constraints:
|
||||
|
Loading…
x
Reference in New Issue
Block a user