| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | public function configurePackage(Package $package): void |
||
| 12 | { |
||
| 13 | $package->name('profile') |
||
| 14 | ->hasConfigFile('profile') |
||
| 15 | ->hasCommand(SeedProfileCommand::class) |
||
| 16 | ->hasMigrations( |
||
| 17 | 'create_addresses_table', |
||
| 18 | 'create_banks_table', |
||
| 19 | 'create_countries_table', |
||
| 20 | 'create_emails_table', |
||
| 21 | 'create_phone_types_table', |
||
| 22 | 'create_phones_table', |
||
| 23 | 'create_websites_table', |
||
| 24 | ); |
||
| 27 |