src/Entity/InvoiceSuperClass.php line 16
<?php/** @author Guerby Duval <info@tranzaksyon.com>* @link https://tranzaksyon.com* @copyright You are not allowed to remove this author "Guerby Duval <info@tranzaksyon.com>", the link "https://tranzaksyon.com" neither this copyright.*/namespace App\Entity;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;use Doctrine\ORM\Mapping\MappedSuperclass;use Symfony\Component\Serializer\Annotation\Groups;#[MappedSuperclass]abstract class InvoiceSuperClass extends BaseDateEntity{}