我的实体中的字段存在问题。 在开发中,一切都很完美,但是在prod中,存储库的一个字段返回null。
this->getDoctrine()
->getRepository(Realization:class)
->find($id)
实体:
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $yardage
在var dump中的prod:
["yardage":"App\Entity\Realization":private]=> NULL
on dev in var dump:
["yardage":"App\Entity\Realization":private]=> int(111)
bin / console c:c后没有任何变化。
有什么想法吗?
答案 0 :(得分:0)
CLOSED
我认为,一些奇怪的缓存,在周末之后它工作得很好......