add( 'content', TextareaBlockType::class, [ 'label' => 'Contenu', 'options' => [ 'attr' => [ 'data-simplemde' => '', 'rows' => '50', ], 'constraints' => [ ], ], ] ); } public function setContent(Block $block) { return $this->setBlock($block); } public function getContent() { return $this->getBlock('content'); } public function setImage(Block $block) { return $this->setBlock($block); } public function getImage() { return $this->getBlock('image', FileBlock::class); } }