| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | public function definition() |
||
| 18 | { |
||
| 19 | return [ |
||
| 20 | 'username' => $this->faker->userName(), |
||
| 21 | 'name' => $this->faker->name(), |
||
| 22 | 'email' => $this->faker->unique()->safeEmail(), |
||
| 23 | 'email_verified_at' => Carbon::now(), |
||
| 24 | 'password' => 'password', |
||
| 25 | 'remember_token' => Str::random(10), |
||
| 26 | ]; |
||
| 43 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.