-
Notifications
You must be signed in to change notification settings - Fork 57
Description
i use for updating the schema doctrine:schema:update
error : No Metadata Classes to process.
here is my Entity code
`<?php
/**
Created by PhpStorm.
User: jamel_pc
Date: 2016-11-27
Time: 9:16 PM
*/
namespace Esprit\ParcBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
Class Modele
@Package ParcBundle\Entity
@Orm\Entity
@Orm\Table(name="Modele")
/
class Modele{
/*
*@Orm\GeneratedValue(strategy="Auto")
*@Orm\Id
@Orm\Column(type="integer")
/
private $id;
/
@Orm\Column(type="string",length=255)
*/
private $Libelle;
/**
@Orm\Column(type="string",length=255)
/
private $Pays;
/*
@Orm\Column(type="string",length=255)
/
/*
@return mixed
/
public function getLibelle()
{
return $this->Libelle;
}
/*
@param mixed $Libelle
/
public function setLibelle($Libelle)
{
$this->Libelle = $Libelle;
}
/*
@return mixed
/
public function getId()
{
return $this->id;
}
/*
@param mixed $id
/
public function setId($id)
{
$this->id = $id;
}
/*
@return mixed
/
public function getPays()
{
return $this->Pays;
}
/*
@param mixed $Pays
*/
public function setPays($Pays)
{
$this->Pays = $Pays;
}
`