@@ -29,32 +29,32 @@ class Playlist extends AbstractTenantScopedEntity implements MultiTenantInterfac
2929 private bool $ isCampaign = false ;
3030
3131 /**
32- * @var \Doctrine\Common\Collections\ Collection<int, \App\Entity\Tenant\ ScreenCampaign>
32+ * @var Collection<int, ScreenCampaign>
3333 */
3434 #[ORM \OneToMany(mappedBy: 'campaign ' , targetEntity: ScreenCampaign::class, orphanRemoval: true )]
3535 private Collection $ screenCampaigns ;
3636
3737 /**
38- * @var \Doctrine\Common\Collections\ Collection<int, \App\Entity\Tenant\ ScreenGroupCampaign>
38+ * @var Collection<int, ScreenGroupCampaign>
3939 */
4040 #[ORM \OneToMany(mappedBy: 'campaign ' , targetEntity: ScreenGroupCampaign::class, orphanRemoval: true )]
4141 private Collection $ screenGroupCampaigns ;
4242
4343 /**
44- * @var \Doctrine\Common\Collections\ Collection<int, \App\Entity\Tenant\ PlaylistScreenRegion>
44+ * @var Collection<int, PlaylistScreenRegion>
4545 */
4646 #[ORM \OneToMany(mappedBy: 'playlist ' , targetEntity: PlaylistScreenRegion::class, orphanRemoval: true )]
4747 private Collection $ playlistScreenRegions ;
4848
4949 /**
50- * @var \Doctrine\Common\Collections\ Collection<int, \App\Entity\Tenant\ PlaylistSlide>
50+ * @var Collection<int, PlaylistSlide>
5151 */
5252 #[ORM \OneToMany(mappedBy: 'playlist ' , targetEntity: PlaylistSlide::class, orphanRemoval: true )]
5353 #[ORM \OrderBy(['weight ' => Order::Ascending->value ])]
5454 private Collection $ playlistSlides ;
5555
5656 /**
57- * @var \Doctrine\Common\Collections\ Collection<int, \App\Entity\Tenant\ Schedule>
57+ * @var Collection<int, Schedule>
5858 */
5959 #[ORM \OneToMany(mappedBy: 'playlist ' , targetEntity: Schedule::class, cascade: ['persist ' ], orphanRemoval: true )]
6060 private Collection $ schedules ;
0 commit comments