Spaces:
No application file
No application file
mautic
/
app
/bundles
/LeadBundle
/Tracker
/Service
/DeviceCreatorService
/DeviceCreatorServiceInterface.php
namespace Mautic\LeadBundle\Tracker\Service\DeviceCreatorService; | |
use DeviceDetector\DeviceDetector; | |
use Mautic\LeadBundle\Entity\Lead; | |
use Mautic\LeadBundle\Entity\LeadDevice; | |
/** | |
* Interface DeviceCreatorServiceInterface. | |
*/ | |
interface DeviceCreatorServiceInterface | |
{ | |
/** | |
* @return LeadDevice|null Null is returned if device can't be detected | |
*/ | |
public function getCurrentFromDetector(DeviceDetector $deviceDetector, Lead $assignedLead); | |
} | |