1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-21 22:47:43 +00:00
Files
matomo/core/View/ViewInterface.php
2025-02-20 13:45:34 +01:00

26 خطوط
420 B
PHP

<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\View;
/**
* Rendering interface for all "view" types.
*
* @api
*/
interface ViewInterface
{
/**
* Returns data.
*
* @return ?string Serialized data, eg, (image, array, html...).
*/
public function render();
}