Entity Relations
Entity description
/**
* Class Invoice
* @package AppBundle\Entity
*
* @ORM\Entity(repositoryClass="AppBundle\Repository\TimesheetsRepository")
*/
class Invoice {
[...]
/**
* @var Project $project
* @ORM\ManyToOne(targetEntity="AppBundle\Entity\Project")
* @ORM\JoinColumn(name="project_id", referencedColumnName="id")
*/
private $project;
[...]
}Yaml Configuration
The filterAttribute configuration key
The __toString method
The 'expanded' configuration key
Last updated