Renamed property not being saved correctly in symfony – PHP
I am trying to update the properties of my entity. For example, in the TestEntity class: class TestEntity { #[ORMId] #[ORMGeneratedValue] #[ORMColumn] private ?int $id = null; #[ORMColumn(length: 255)] private ?string $testMe = null; public function getId(): ?int { return…