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\Entity
11 */
12class BlogPostWithEmbedded
13{
14    /**
15     * @ORM\Id
16     * @ORM\Column(type="guid")
17     * @ORM\GeneratedValue(strategy="UUID")
18     */
19    protected $id;
20
21    /**
22     * @ORM\Embedded(class="BlogPostSeo", columnPrefix="seo_")
23     */
24    private $seo;
25}
26