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