| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | |||
| 18 | /** |
||
| 19 | * The command description. |
||
| 20 | * |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | protected $description = 'Create a new migration file.'; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Handle the command. |
||
| 27 | */ |
||
| 28 | protected function handle() |
||
| 29 | { |
||
| 30 | $creator = $this->getCreator(); |
||
| 31 | |||
| 32 | $create = is_null($create = $this->option('create')) ? false : $create; |
||
| 33 | |||
| 51 |