| 1 | <?php |
||
| 8 | class Help implements Renderable |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var string |
||
| 12 | */ |
||
| 13 | protected $message = ''; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Help constructor. |
||
| 17 | * |
||
| 18 | * @param string $message |
||
| 19 | */ |
||
| 20 | public function __construct($message = '') |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Render help header. |
||
| 27 | * |
||
| 28 | * @return string |
||
| 29 | */ |
||
| 30 | public function render() |
||
| 50 | } |