Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | class UserProfileFactory extends Factory |
||
14 | { |
||
15 | /** |
||
16 | * The name of the factory's corresponding model. |
||
17 | * |
||
18 | * @var string |
||
19 | */ |
||
20 | protected $model = UserProfile::class; |
||
21 | |||
22 | /** |
||
23 | * Define the model's default state. |
||
24 | * |
||
25 | * @return array |
||
26 | */ |
||
27 | public function definition(): array |
||
35 |