Skip to content

Customer Data Templates

Carlo Tasca edited this page Dec 26, 2022 · 1 revision

customer-data.tpl.php

{{php}}
declare(strict_types=1);

namespace {{namespace}};

use Magento\Customer\CustomerData\SectionSourceInterface;

class {{class_name}} implements SectionSourceInterface
{
    /**
     * @inheritdoc
     */
    public function getSectionData()
    {
        return [];
    }
}