Symfony实体不会保存到持久数据库中

时间:2016-02-03 08:46:19

标签: php symfony doctrine entity orocrm

这适用于控制器,但是在注入命令时它不起作用。

public function execute(InputInterface $input, OutputInterface $output)
{
    $em = $this->getDoctrine()->getManager();

    try {
        $task = new Task();
        $task->setSubject("Test subject");
        $task->setCreatedAt(new \DateTime());

        $em->persist($task);
        $em->flush();
    } catch (\Exception $e) {
        throw $e; //no error
    }
    //prints successful here
}

/**
 * @param string $entityName
 * @return \Doctrine\Common\Persistence\ObjectRepository
 */
protected function getRepository($entityName)
{
    return $this->getDoctrine()->getRepository($entityName);
}

protected function getDoctrine()
{
    return $this->getContainer()->get('doctrine');
}

cron成功地将其提取到最后,但它不会抛出任何错误或保存实体。

1 个答案:

答案 0 :(得分:0)

检查数据库,可以保存它,但是如果'status_id'为空,它将不会显示在任何地方