Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
21 | public function definition(): array |
||
22 | { |
||
23 | return [ |
||
24 | 'name' => fake()->name(), |
||
25 | 'email' => fake()->unique()->safeEmail(), |
||
26 | 'email_verified_at' => now(), |
||
27 | 'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password |
||
28 | 'remember_token' => Str::random(10), |
||
29 | ]; |
||
42 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.