Digi92
4/15/2017 - 8:59 PM

Doctrine Example ID Field Annotation Configuration

Doctrine Example ID Field Annotation Configuration

<?php

namespace AppBundle\Entity;

use Doctrine\ORM\Mapping as ORM;

/**
 * Class Example
 * @package AppBundle\Entity
 * @ORM\Entity
 * @ORM\Table(name="example")
 */
class Example {

    /**
     * @ORM\Column(type="integer")
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="AUTO")
     * @var integer
     */
    private $id;
    
    /**
     * Get id
     *
     * @return integer
     */
    public function getId()
    {
        return $this->id;
    }
}