Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
39 | 1 | private static function formatHelpText($doc) |
|
40 | { |
||
41 | 1 | $help = ''; |
|
42 | 1 | $help .= $doc->synopsis() . "\n"; |
|
43 | 1 | $help .= "Usage: {$doc->usage()}\n"; |
|
44 | 1 | $help .= "Examples:\n"; |
|
45 | 1 | foreach ($doc->examples() as $example) { |
|
46 | 1 | $help .= "\t$example\n"; |
|
47 | } |
||
48 | 1 | return new StringType($help); |
|
49 | } |
||
50 | } |
||
51 |