CliPhp.php
5 years ago
Output.php
4 years ago
OutputInterface.php
4 years ago
Process.php
4 years ago
RequestCommand.php
5 years ago
RequestParser.php
5 years ago
StaticOutput.php
4 years ago
OutputInterface.php
25 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Matomo - free/libre analytics platform |
| 4 | * |
| 5 | * @link https://matomo.org |
| 6 | * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later |
| 7 | */ |
| 8 | namespace Piwik\CliMulti; |
| 9 | |
| 10 | |
| 11 | interface OutputInterface |
| 12 | { |
| 13 | public function getOutputId(); |
| 14 | |
| 15 | public function write($content); |
| 16 | |
| 17 | public function isAbnormal(): bool; |
| 18 | |
| 19 | public function exists(): bool; |
| 20 | |
| 21 | public function get(); |
| 22 | |
| 23 | public function destroy(); |
| 24 | } |
| 25 |