1<?php 2 3declare(strict_types=1); 4 5namespace JMS\Serializer\Tests\Fixtures\Doctrine; 6 7use Doctrine\ORM\Mapping as ORM; 8 9/** 10 * @ORM\Embeddable() 11 */ 12class BlogPostSeo 13{ 14 /** 15 * @ORM\Column(type="string", name="meta_title") 16 * 17 * @var string 18 */ 19 private $metaTitle; 20} 21