Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ViewInterface.php « View « core - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b1e6133903075e1e338d03c6955a02d999308488 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
/**
 * Piwik - Open source web analytics
 *
 * @link http://piwik.org
 * @license http://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...).
     */
    function render();
}