Spaces:
No application file
No application file
declare(strict_types=1); | |
namespace Mautic\IntegrationsBundle\Integration; | |
trait DefaultConfigFormTrait | |
{ | |
/** | |
* Use the default. | |
*/ | |
public function getConfigFormName(): ?string | |
{ | |
return null; | |
} | |
/** | |
* Use the default. | |
*/ | |
public function getConfigFormContentTemplate(): ?string | |
{ | |
return null; | |
} | |
/** | |
* Use the default. | |
*/ | |
public function getSyncConfigFormName(): ?string | |
{ | |
return null; | |
} | |
} | |