|
@@ -290,11 +290,11 @@ class Organization
|
|
|
private Collection $courses;
|
|
private Collection $courses;
|
|
|
|
|
|
|
|
/** @var Collection<int, EducationalProject> */
|
|
/** @var Collection<int, EducationalProject> */
|
|
|
- #[ORM\OneToMany(mappedBy: 'organization', targetEntity: EducationalProject::class, cascade: ['persist', 'remove'])]
|
|
|
|
|
|
|
+ #[ORM\OneToMany(targetEntity: EducationalProject::class, mappedBy: 'organization', cascade: ['persist', 'remove'])]
|
|
|
private Collection $educationalProjects;
|
|
private Collection $educationalProjects;
|
|
|
|
|
|
|
|
/** @var Collection<int, Event> */
|
|
/** @var Collection<int, Event> */
|
|
|
- #[ORM\OneToMany(mappedBy: 'organization', targetEntity: Event::class, cascade: ['persist', 'remove'])]
|
|
|
|
|
|
|
+ #[ORM\OneToMany(targetEntity: Event::class, mappedBy: 'organization', cascade: ['persist', 'remove'])]
|
|
|
private Collection $events;
|
|
private Collection $events;
|
|
|
|
|
|
|
|
/** @var Collection<int, Examen> */
|
|
/** @var Collection<int, Examen> */
|
|
@@ -322,39 +322,39 @@ class Organization
|
|
|
private Collection $notifications;
|
|
private Collection $notifications;
|
|
|
|
|
|
|
|
/** @var Collection<int, Email> */
|
|
/** @var Collection<int, Email> */
|
|
|
- #[ORM\OneToMany(mappedBy: 'organization', targetEntity: Email::class, cascade: ['persist', 'remove'])]
|
|
|
|
|
|
|
+ #[ORM\OneToMany(targetEntity: Email::class, mappedBy: 'organization', cascade: ['persist', 'remove'])]
|
|
|
private Collection $emails;
|
|
private Collection $emails;
|
|
|
|
|
|
|
|
/** @var Collection<int, Mail> */
|
|
/** @var Collection<int, Mail> */
|
|
|
- #[ORM\OneToMany(mappedBy: 'organization', targetEntity: Mail::class, cascade: ['persist', 'remove'])]
|
|
|
|
|
|
|
+ #[ORM\OneToMany(targetEntity: Mail::class, mappedBy: 'organization', cascade: ['persist', 'remove'])]
|
|
|
private Collection $mails;
|
|
private Collection $mails;
|
|
|
|
|
|
|
|
/** @var Collection<int, Sms> */
|
|
/** @var Collection<int, Sms> */
|
|
|
- #[ORM\OneToMany(mappedBy: 'organization', targetEntity: Sms::class, cascade: ['persist', 'remove'])]
|
|
|
|
|
|
|
+ #[ORM\OneToMany(targetEntity: Sms::class, mappedBy: 'organization', cascade: ['persist', 'remove'])]
|
|
|
private Collection $sms;
|
|
private Collection $sms;
|
|
|
|
|
|
|
|
/** @var Collection<int, Activity> */
|
|
/** @var Collection<int, Activity> */
|
|
|
- #[ORM\OneToMany(mappedBy: 'organization', targetEntity: Activity::class, cascade: ['persist', 'remove'])]
|
|
|
|
|
|
|
+ #[ORM\OneToMany(targetEntity: Activity::class, mappedBy: 'organization', cascade: ['persist', 'remove'])]
|
|
|
private Collection $activities;
|
|
private Collection $activities;
|
|
|
|
|
|
|
|
/** @var Collection<int, Jury> */
|
|
/** @var Collection<int, Jury> */
|
|
|
- #[ORM\OneToMany(mappedBy: 'organization', targetEntity: Jury::class, cascade: ['persist', 'remove'])]
|
|
|
|
|
|
|
+ #[ORM\OneToMany(targetEntity: Jury::class, mappedBy: 'organization', cascade: ['persist', 'remove'])]
|
|
|
private Collection $juries;
|
|
private Collection $juries;
|
|
|
|
|
|
|
|
/** @var Collection<int, Commission> */
|
|
/** @var Collection<int, Commission> */
|
|
|
- #[ORM\OneToMany(mappedBy: 'organization', targetEntity: Commission::class, cascade: ['persist', 'remove'])]
|
|
|
|
|
|
|
+ #[ORM\OneToMany(targetEntity: Commission::class, mappedBy: 'organization', cascade: ['persist', 'remove'])]
|
|
|
private Collection $commissions;
|
|
private Collection $commissions;
|
|
|
|
|
|
|
|
/** @var Collection<int, Place> */
|
|
/** @var Collection<int, Place> */
|
|
|
- #[ORM\OneToMany(mappedBy: 'organization', targetEntity: Place::class, cascade: ['persist', 'remove'])]
|
|
|
|
|
|
|
+ #[ORM\OneToMany(targetEntity: Place::class, mappedBy: 'organization', cascade: ['persist', 'remove'])]
|
|
|
private Collection $places;
|
|
private Collection $places;
|
|
|
|
|
|
|
|
/** @var Collection<int, Attendance> */
|
|
/** @var Collection<int, Attendance> */
|
|
|
- #[ORM\OneToMany(mappedBy: 'organization', targetEntity: Attendance::class, cascade: ['persist', 'remove'])]
|
|
|
|
|
|
|
+ #[ORM\OneToMany(targetEntity: Attendance::class, mappedBy: 'organization', cascade: ['persist', 'remove'])]
|
|
|
private Collection $attendances;
|
|
private Collection $attendances;
|
|
|
|
|
|
|
|
/** @var Collection<int, Equipment> */
|
|
/** @var Collection<int, Equipment> */
|
|
|
- #[ORM\OneToMany(mappedBy: 'organization', targetEntity: Equipment::class, cascade: ['persist', 'remove'])]
|
|
|
|
|
|
|
+ #[ORM\OneToMany(targetEntity: Equipment::class, mappedBy: 'organization', cascade: ['persist', 'remove'])]
|
|
|
private Collection $equipments;
|
|
private Collection $equipments;
|
|
|
|
|
|
|
|
/** @var Collection<int, Intangible> */
|
|
/** @var Collection<int, Intangible> */
|