Add an empty paragraph renderer

[MAILPOET-2614]
This commit is contained in:
Pavel Dohnal
2020-03-19 09:22:11 +01:00
committed by Veljko V
parent 6fe3ff3fe1
commit c0a5097cdd
3 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,9 @@
<?php
namespace MailPoet\Form\Block;
class Paragraph {
public function render(array $block): string {
return '';
}
}