Last active
March 24, 2020 16:34
-
-
Save kuzmany/995313c52f82bbb245152404f0c0d53d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* @copyright 2020 Mautic Contributors. All rights reserved | |
* @author Mautic | |
* | |
* @link http://mautic.org | |
* | |
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html | |
*/ | |
namespace MauticPlugin\ExampleBundle\Integration\ExampleIntegration; | |
class ExampleTransport implements TransportInterface, TransportSettingsInterface | |
{ | |
.... | |
/** | |
* Define which settings your transport support. | |
* | |
* @return array | |
*/ | |
public function enabledSettings() | |
{ | |
[ | |
TransportSettingsInterface::STAT_DELIVERED, | |
TransportSettingsInterface::STAT_READ, | |
TransportSettingsInterface::STAT_FAILED, | |
]; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment