소스 검색

fix task notes in task post

master
Daniel 2 년 전
부모
커밋
c9a6d18826
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. +2
    -0
      src/Entity/Task.php

+ 2
- 0
src/Entity/Task.php 파일 보기

@@ -4,6 +4,7 @@ namespace App\Entity;

use App\Enum\PrioType;
use App\Repository\TaskRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
@@ -58,6 +59,7 @@ class Task
$this->createdBy = $createdBy;
$this->assignedTo = $assignedTo;
$this->createdAt = new \DateTimeImmutable();
$this->taskNotes = new ArrayCollection();
}

public function getId(): ?int


불러오는 중...
취소
저장