chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?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);
}