قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-22 06:57:53 +00:00
22 خطوط
436 B
PHP
22 خطوط
436 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\UsersManager\TokenNotifications;
|
|
|
|
interface TokenNotificationInterface
|
|
{
|
|
public function getTokenId(): string;
|
|
|
|
public function getTokenName(): string;
|
|
|
|
public function getTokenCreationDate(): string;
|
|
|
|
public function dispatch(): bool;
|
|
}
|