| Total Complexity | 3 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class UserFactory extends Factory |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * {@inheritDoc} |
||
| 16 | */ |
||
| 17 | public function definition() |
||
| 24 | ]; |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Indicate that the model's email address should be unverified. |
||
| 29 | * |
||
| 30 | * @return \Illuminate\Database\Eloquent\Factories\Factory |
||
| 31 | */ |
||
| 32 | public function unverified() |
||
| 37 | ]; |
||
| 38 | }); |
||
| 39 | } |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Indicate that the model's email address should be verified. |
||
| 43 | * |
||
| 44 | * @return \Illuminate\Database\Eloquent\Factories\Factory |
||
| 45 | */ |
||
| 46 | public function verified() |
||
| 55 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.