Remove unrelated code style change.

This commit is contained in:
Pol Dellaiera 2021-03-31 14:57:25 +02:00
parent 48e2d2ceab
commit 03243605da
3 changed files with 83 additions and 79 deletions

View File

@ -102,6 +102,10 @@ class AccompanyingPeriod
* Set closingDate * Set closingDate
* *
* For closing a Person file, you should use Person::setClosed instead. * For closing a Person file, you should use Person::setClosed instead.
*
* @param \DateTime $dateClosing
* @return AccompanyingPeriod
*
*/ */
public function setClosingDate($closingDate) public function setClosingDate($closingDate)
{ {
@ -132,9 +136,9 @@ class AccompanyingPeriod
if ($this->getClosingDate() === null) { if ($this->getClosingDate() === null) {
return true; return true;
} else {
return false;
} }
return false;
} }
/** /**