forked from rebillar/site-accueil-insa
24 lines
425 B
PHP
24 lines
425 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\CliMulti;
|
|
|
|
|
|
interface OutputInterface
|
|
{
|
|
public function getOutputId();
|
|
|
|
public function write($content);
|
|
|
|
public function isAbnormal(): bool;
|
|
|
|
public function exists(): bool;
|
|
|
|
public function get();
|
|
|
|
public function destroy();
|
|
}
|