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\MappedSuperclass()
*/
class DDC5934BaseContract
{
* @ORM\Id()
* @ORM\Column(name="id", type="integer")
* @ORM\GeneratedValue()
public $id;
* @var ArrayCollection
*
* @ORM\OneToMany(targetEntity="DDC5934Member", fetch="LAZY", mappedBy="contract")
public $members;
public function __construct()
$this->members = new ArrayCollection();
}