<?phpnamespace App\Entity;use Doctrine\ORM\Mapping as ORM;use Sherlockode\ConfigurationBundle\Model\Parameter as BaseParameter;#[ORM\Entity]class Parameter extends BaseParameter{ #[ORM\Id] #[ORM\Column(name: 'path', type: 'string')] protected $path; #[ORM\Column(name: 'value', type: 'text', nullable: true)] protected $value = null;}