Spaces:
No application file
No application file
declare(strict_types=1); | |
namespace Mautic\IntegrationsBundle\Integration\Interfaces; | |
use Mautic\PluginBundle\Integration\UnifiedIntegrationInterface; | |
interface BasicInterface extends UnifiedIntegrationInterface | |
{ | |
/** | |
* Return the integration's name. | |
*/ | |
public function getName(): string; | |
public function getIcon(): string; | |
} | |