Spaces:
No application file
No application file
mautic
/
app
/bundles
/LeadBundle
/Tracker
/Service
/ContactTrackingService
/ContactTrackingServiceInterface.php
namespace Mautic\LeadBundle\Tracker\Service\ContactTrackingService; | |
use Mautic\LeadBundle\Entity\Lead; | |
/** | |
* Interface ContactTrackingInterface. | |
*/ | |
interface ContactTrackingServiceInterface | |
{ | |
/** | |
* Return current tracked Lead. | |
* | |
* @return Lead|null | |
*/ | |
public function getTrackedLead(); | |
/** | |
* @return string|null Unique identifier | |
*/ | |
public function getTrackedIdentifier(); | |
} | |