| Total Complexity | 1 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class Path extends ConsoleOutputter |
||
| 9 | {
|
||
| 10 | use ConsoleListAccessor; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var $type |
||
|
|
|||
| 14 | */ |
||
| 15 | public $type = 'path'; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var $define |
||
| 19 | */ |
||
| 20 | public $define = 'returns path information for application'; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var $commandRule |
||
| 24 | */ |
||
| 25 | public $commandRule = ['path']; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return mixed|void |
||
| 29 | */ |
||
| 30 | public function get() |
||
| 34 | } |
||
| 35 | } |