カスタムフォームタイプで使用する場合Doctrine\Common\Persistence\ObjectManager
との違いは何ですか?Doctrine\ORM\EntityManager
と の両方$this->em->getRepository()
を使用してリポジトリを取得できます$this->om->getRepository()
。
class MyFormType extends \Symfony\Component\Form\AbstractType
{
/**
* @var Doctrine\ORM\EntityManager
*/
protected $em;
public function __construct(Doctrine\ORM\EntityManager $em)
{
$this->em = $em;
}
}
それ以外の:
class MyFormType extends \Symfony\Component\Form\AbstractType
{
/**
* @var Doctrine\Common\Persistence\ObjectManager
*/
protected $om;
public function __construct(Doctrine\Common\Persistence\ObjectManager $om)
{
$this->om = $om;
}
}