mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
18 lines
409 B
PHP
18 lines
409 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class StatisticsMessageFactory extends Factory
|
|
{
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'id' => $this->faker->uuid(),
|
|
'from' => $this->faker->email(),
|
|
'sent_at' => $this->faker->dateTimeBetween('-1 year'),
|
|
'encrypted' => false
|
|
];
|
|
}
|
|
}
|