<?php
namespace AppBundle\Entity;
/**
* Person
*/
class Person
{
/**
* @var int
*/
private $id;
/**
* @var string
*/
private $name;
/**
* @var int
*/
private $age;
/**
* Get id
*
* @return int
*/
public function getId()
{
return $this->id;
}
/**
* Set name
*
* @param string $name
*
* @return Person
*/
public function setName($name)
{
$this->name = $name;
return $this;
}
/**
* Get name
*
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Set age
*
* @param integer $age
*
* @return Person
*/
public function setAge($age)
{
$this->age = $age;
return $this;
}
/**
* Get age
*
* @return int
*/
public function getAge()
{
return $this->age;
}
}
AppBundle\Entity\Person:
type: entity
repositoryClass: AppBundle\Repository\PersonRepository
table: persons
id:
id:
type: integer
id: true
generator:
strategy: AUTO
fields:
name:
type: string
length: 20
nullable: false
column: Name
unique: true
age:
type: integer
nullable: false
column: Age
unique: false
lifecycleCallbacks: { }
php bin/console doctrine:schema:update --force
Or use the recommended way (assuming you already have doctrine-migrations-bundle installed in your project):
php bin/console doctrine:migrations:diff
php bin/console doctrine:migrations:migrate
Create the entity automatically from the YAML
php bin/console doctrine:generate:entities AppBundle