|
|
|
|
|
by tomcorrigan
5000 days ago
|
|
Easily, the annotation parser ignores all comments that it doesn't recognise. /**
* @var integer $id
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
* some comment that the doctrine parser will ignore completely
*/
private $id;
|
|