forked from vergnet/site-accueil-insa
22 lines
382 B
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();
|
|
}
|