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