engelsystem/db/factories/PrivilegeFactory.php

23 lines
486 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
namespace Database\Factories\Engelsystem\Models;
use Engelsystem\Models\Privilege;
use Illuminate\Database\Eloquent\Factories\Factory;
class PrivilegeFactory extends Factory
{
/** @var string */
protected $model = Privilege::class; // phpcs:ignore
public function definition(): array
{
return [
2022-11-26 13:36:47 +01:00
'name' => $this->faker->unique()->word(),
'description' => $this->faker->text(),
];
}
}