Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | namespace CirrusSearch\Maintenance; |
| 4 | |
| 5 | use StatusValue; |
| 6 | |
| 7 | interface Printer { |
| 8 | /** |
| 9 | * @param string $message |
| 10 | * @param string|null $channel |
| 11 | */ |
| 12 | public function output( $message, $channel = null ); |
| 13 | |
| 14 | /** |
| 15 | * @param string $message |
| 16 | */ |
| 17 | public function outputIndented( $message ); |
| 18 | |
| 19 | /** |
| 20 | * @param string|StatusValue $err |
| 21 | * @param int $die |
| 22 | */ |
| 23 | public function error( $err, $die = 0 ); |
| 24 | } |