Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php namespace Tarsana\Command\Examples; |
||
7 | protected function init () |
||
8 | { |
||
9 | $this->name('Render') |
||
10 | ->version('1.0.0') |
||
11 | ->description('Renders the hello template.') |
||
12 | ->syntax('name: (string:You)') |
||
13 | ->describe('name', 'Your name.') |
||
14 | ->templatesPath(TEMPLATES_PATH); |
||
15 | // this points to /tests/resources/templates |
||
16 | } |
||
17 | |||
29 |