src/Entity/Product/ProductTranslation.php line 27

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Entity\Product;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Sylius\Component\Core\Model\ProductTranslation as BaseProductTranslation;
  6. /**
  7.  * @ORM\Entity
  8.  * @ORM\Table(name="sylius_product_translation")
  9.  * @ORM\MappedSuperclass()
  10.  * @ORM\AttributeOverrides({
  11.  *     @ORM\AttributeOverride(
  12.  *         name="metaKeywords",
  13.  *         column=@ORM\Column(
  14.  *             name="meta_keywords",
  15.  *             type="string",
  16.  *             length=2000,
  17.  *             nullable=true
  18.  *         )
  19.  *     )
  20.  * })
  21.  */
  22. class ProductTranslation extends BaseProductTranslation
  23. {
  24. }