for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Shopware\Core\Content\Flow\DataAbstractionLayer\Field;
use Shopware\Core\Content\Flow\DataAbstractionLayer\FieldSerializer\FlowTemplateConfigFieldSerializer;
use Shopware\Core\Framework\DataAbstractionLayer\Field\JsonField;
/**
* @package business-ops
*
* @internal
*/
class FlowTemplateConfigField extends JsonField
{
public function __construct(string $storageName, string $propertyName)
$this->storageName = $storageName;
parent::__construct($storageName, $propertyName);
}
protected function getSerializerClass(): string
return FlowTemplateConfigFieldSerializer::class;