templates added and adapted, still problems with scope

This commit is contained in:
2021-09-03 16:05:55 +02:00
parent aad0d295ef
commit b11592fb6d
11 changed files with 518 additions and 67 deletions

View File

@@ -1,24 +1,17 @@
<?php
namespace App\Entity;
namespace Chill\DocStoreBundle\Entity;
use Chill\DocStoreBundle\Entity\Document;
use Chill\PersonBundle\Entity\AccompanyingPeriod;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=AccompanyingCourseDocumentRepository::class)
* @ORM\Entity()
* @ORM\Table("chill_doc.accompanyingcourse_document")
*/
class AccompanyingCourseDocument extends Document
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\ManyToOne(targetEntity=AccompanyingPeriod::class)
* @ORM\JoinColumn(nullable=false)