mautic / app /bundles /EmailBundle /Entity /EmailReplyRepositoryInterface.php
chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?php
namespace Mautic\EmailBundle\Entity;
use Mautic\LeadBundle\Entity\Lead;
/**
* Interface EmailReplyRepositoryInterface.
*/
interface EmailReplyRepositoryInterface
{
/**
* @param int|Lead $leadId
* @param array $options
*
* @return array
*/
public function getByLeadIdForTimeline($leadId, $options);
}