Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 3 |
|
0.00% |
0 / 3 |
CRAP | |
0.00% |
0 / 1 |
NullPrinter | |
0.00% |
0 / 3 |
|
0.00% |
0 / 3 |
12 | |
0.00% |
0 / 1 |
output | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
outputIndented | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
error | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | namespace CirrusSearch\Maintenance; |
4 | |
5 | class NullPrinter implements Printer { |
6 | public function output( $message, $channel = null ) { |
7 | } |
8 | |
9 | public function outputIndented( $message ) { |
10 | } |
11 | |
12 | public function error( $err, $die = 0 ) { |
13 | } |
14 | } |