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