site-accueil-insa/matomo/plugins/Live/VisitorInterface.php

22 lines
382 B
PHP

<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\Plugins\Live;
interface VisitorInterface
{
/**
* @return array
*/
public function getAllVisitorDetails();
/**
* @return string|bool
*/
public function getVisitorId();
}