| Total Complexity | 2 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class Test extends ConsoleOutputter {
|
||
| 9 | |||
| 10 | use ConsoleListAccessor; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var $type |
||
|
|
|||
| 14 | */ |
||
| 15 | public $type = 'test'; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var $define |
||
| 19 | */ |
||
| 20 | public $define = 'creates test file for application'; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var $commandRule |
||
| 24 | */ |
||
| 25 | public $commandRule = ['test']; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @method generate |
||
| 29 | * @return mixed |
||
| 30 | */ |
||
| 31 | public function create() |
||
| 49 | } |
||
| 50 | } |