mautic / app /bundles /SmsBundle /Sms /TransportInterface.php
chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?php
namespace Mautic\SmsBundle\Sms;
use Mautic\LeadBundle\Entity\Lead;
interface TransportInterface
{
/**
* @param string $content
*
* @return bool
*/
public function sendSms(Lead $lead, $content);
}