for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace MonsieurBiz\SyliusRichEditorPlugin\UiElement\Element;
use MonsieurBiz\SyliusRichEditorPlugin\Form\Type\UiElement\QuoteType;
use MonsieurBiz\SyliusRichEditorPlugin\UiElement\AbstractUiElement;
class Quote extends AbstractUiElement
{
protected $type = 'quote';
public function getImage(): string
return '/bundles/monsieurbizsyliusricheditorplugin/images/ui_elements/quote.svg';
}
public function getFields(): array
return ['author', 'content'];
public function getFormClass(): string
return QuoteType::class;