chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?php
namespace Mautic\LeadBundle\Tracker\Service\DeviceTrackingService;
use Mautic\LeadBundle\Entity\LeadDevice;
/**
* Interface DeviceTrackingServiceInterface.
*/
interface DeviceTrackingServiceInterface
{
/**
* @return bool
*/
public function isTracked();
/**
* @return LeadDevice|null
*/
public function getTrackedDevice();
/**
* @param bool $replaceExistingTracking
*
* @return LeadDevice
*/
public function trackCurrentDevice(LeadDevice $device, $replaceExistingTracking = false);
public function clearTrackingCookies();
}