- Update various factory files in the `database/factories` directory - Remove unused imports and annotations in factory files - Add or update comments and PHPDoc blocks for better understanding and readability - Remove unused imports in controller and command files - Remove commented out code in middleware file
25 lines
477 B
PHP
25 lines
477 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
/**
|
|
* @psalm-suppress UnusedClass
|
|
*
|
|
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Bio>
|
|
*/
|
|
class BioFactory extends Factory
|
|
{
|
|
/**
|
|
* Define the model's default state.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'content' => $this->faker->paragraph,
|
|
];
|
|
}
|
|
}
|