Files
animethemes-server/database/factories/User/NotificationFactory.php
T
2025-08-27 03:47:27 -03:00

42 lines
963 B
PHP

<?php
declare(strict_types=1);
namespace Database\Factories\User;
use App\Models\User\Notification;
use App\Notifications\ExternalProfileSyncedNotification;
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Str;
/**
* Class NotificationFactory.
*
* @method Notification createOne($attributes = [])
* @method Notification makeOne($attributes = [])
*
* @extends Factory<Notification>
*/
class NotificationFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var class-string<Notification>
*/
protected $model = Notification::class;
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition(): array
{
return [
Notification::ATTRIBUTE_ID => Str::uuid()->__toString(),
Notification::ATTRIBUTE_TYPE => ExternalProfileSyncedNotification::class,
];
}
}