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