rector/packages-tests/BetterPhpDocParser/PhpDocInfo/PhpDocInfoPrinter/Source/Class_/SomeEntityClass.php

23 lines
570 B
PHP

<?php
declare(strict_types=1);
namespace Rector\BetterPhpDocParser\Tests\PhpDocInfo\PhpDocInfoPrinter\Source\Class_;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Table(name="amenity_building", uniqueConstraints={
* @ORM\UniqueConstraint(name="building_id_amenity_id", columns={"building_id", "amenity_id"})
* })
* @ORM\DiscriminatorMap({
* "portfolio" = PortfolioBillingProfile::class,
* "user" = UserBillingProfile::class
* })
* @Gedmo\SoftDeleteable(fieldName="deletedAt", timeAware=false, hardDelete=true)
*/
final class SomeEntityClass
{
}