This commit is contained in:
Julie Lenaerts 2022-04-27 14:51:37 +02:00
parent 467ae5f474
commit 9244040d7b
2 changed files with 2 additions and 1 deletions

View File

@ -1258,7 +1258,6 @@ class AccompanyingPeriod implements
*/ */
public function setPinnedComment(?Comment $comment = null): self public function setPinnedComment(?Comment $comment = null): self
{ {
if (null !== $this->pinnedComment) { if (null !== $this->pinnedComment) {
$this->addComment($this->pinnedComment); $this->addComment($this->pinnedComment);
} }

View File

@ -41,8 +41,10 @@ class AccompanyingPeriodCommentVoter extends Voter
switch ($attribute) { switch ($attribute) {
case self::EDIT: case self::EDIT:
return $this->security->isGranted(AccompanyingPeriodVoter::EDIT, $subject->getAccompanyingPeriod()); return $this->security->isGranted(AccompanyingPeriodVoter::EDIT, $subject->getAccompanyingPeriod());
case self::DELETE: case self::DELETE:
return $this->security->isGranted(AccompanyingPeriodVoter::EDIT, $subject->getAccompanyingPeriod()); return $this->security->isGranted(AccompanyingPeriodVoter::EDIT, $subject->getAccompanyingPeriod());
default: default:
throw new UnexpectedValueException("This attribute {$attribute} is not supported"); throw new UnexpectedValueException("This attribute {$attribute} is not supported");
} }