Skip to content

Commit

Permalink
Merge pull request laravel#5806 from axlon/patch-1
Browse files Browse the repository at this point in the history
[9.x] Improve typing on user factory
  • Loading branch information
nunomaduro authored Feb 9, 2022
2 parents 5901059 + 6479a60 commit a49d1c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions database/factories/UserFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class UserFactory extends Factory
/**
* Define the model's default state.
*
* @return array
* @return array<string, mixed>
*/
public function definition()
{
Expand All @@ -29,7 +29,7 @@ public function definition()
/**
* Indicate that the model's email address should be unverified.
*
* @return \Illuminate\Database\Eloquent\Factories\Factory
* @return static
*/
public function unverified()
{
Expand Down

0 comments on commit a49d1c2

Please sign in to comment.