| Total Complexity | 3 |
| Total Lines | 42 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class CreateSettingsTable extends Command |
||
| 11 | { |
||
| 12 | /** @var string */ |
||
| 13 | protected $signature = 'model-settings:model-settings-table'; |
||
| 14 | |||
| 15 | /** @var string */ |
||
| 16 | protected $description = 'Create migration for the settings table'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param \Illuminate\Filesystem\Filesystem $file |
||
| 20 | * @return bool |
||
| 21 | * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException |
||
| 22 | */ |
||
| 23 | 1 | public function handle(Filesystem $file) |
|
| 54 |