for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Doctrine\Tests\Models\DDC5934;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity()
*/
class DDC5934Member
{
* @var ArrayCollection
*
* @ORM\ManyToOne(targetEntity="DDC5934BaseContract", inversedBy="members")
public $contract;
public function __construct()
$this->contract = new ArrayCollection();
}