for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Doctrine\Tests\Models\ManyToManyPersister;
use Doctrine\ORM\Annotation as ORM;
/**
* @ORM\Entity
* @ORM\Table(name="manytomanypersister_other_parent")
*/
class OtherParentClass
{
* @ORM\Id
* @ORM\Column(name="id", type="integer")
*
* @var integer
public $id;
public function __construct(int $id)
$this->id = $id;
}