chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?php
declare(strict_types=1);
namespace Mautic\IntegrationsBundle\Integration\Interfaces;
use Mautic\IntegrationsBundle\DTO\Note;
interface ConfigFormNotesInterface
{
public function getAuthorizationNote(): ?Note;
public function getFeaturesNote(): ?Note;
public function getFieldMappingNote(): ?Note;
}