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