Skip to content

Commit 033b61b

Browse files
committed
ref: refactored doc block
1 parent db62b4d commit 033b61b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/Domain/User/Factories/UserFactory.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use Shared\Enums\UserStatus;
1212

1313
/**
14-
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\User>
14+
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\Domain\User\Entities\User>
1515
*/
1616
class UserFactory extends Factory
1717
{
@@ -20,7 +20,13 @@ class UserFactory extends Factory
2020
*/
2121
protected static ?string $password = null;
2222

23+
/**
24+
* The model that the factory corresponds to.
25+
*
26+
* @var class-string<User>
27+
*/
2328
protected $model = User::class;
29+
2430
/**
2531
* Define the model's default state.
2632
*

0 commit comments

Comments
 (0)