Created
December 4, 2017 17:02
-
-
Save NandoKstroNet/8013fceda97623594eee61c9c0d2ca18 to your computer and use it in GitHub Desktop.
Entitade Doctrine no Symfony 4, post da codeexpertslearning.com.br
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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