Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
12 | protected function init() |
||
13 | 2 | { |
|
14 | 2 | $this->setSummary('CLI Router'); |
|
15 | 2 | $this->setUsage('<method> <uri>'); |
|
16 | 2 | $this->setDescr("E.g. \"get /\", \"options /users\", \"post 'app://self/users?name=Sunday'\""); |
|
17 | $this->descr = ''; |
||
18 | $this->summary = ''; |
||
19 | $this->usage = ''; |
||
20 | |||
21 | return null; |
||
22 | } |
||
24 |