| Total Complexity | 2 |
| Total Lines | 45 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 5 | class SetupDevTools extends Command |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * The name and signature of the console command. |
||
| 9 | * |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | protected $signature = 'twill:setup-devtools'; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * The console command description. |
||
| 16 | * |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | protected $description = 'Sets up the twill dev tools for standards'; |
||
| 20 | |||
| 21 | /* |
||
| 22 | * Executes the console command. |
||
| 23 | * |
||
| 24 | * @return mixed |
||
| 25 | */ |
||
| 26 | public function handle() |
||
| 52 |