Skip to content

Instantly share code, notes, and snippets.

@NandoKstroNet
Created December 4, 2017 17:02
Show Gist options
  • Save NandoKstroNet/8013fceda97623594eee61c9c0d2ca18 to your computer and use it in GitHub Desktop.
Save NandoKstroNet/8013fceda97623594eee61c9c0d2ca18 to your computer and use it in GitHub Desktop.
Entitade Doctrine no Symfony 4, post da codeexpertslearning.com.br
<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass="App\Repository\ProductRepository")
*/
class Product
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
// add your own fields
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment