Files
luos/database/factories/ProcessCategoryFactory.php

15 lines
357 B
PHP
Raw Normal View History

2019-05-02 12:46:53 -04:00
<?php
/**
* Model factory for a process category
*/
use Faker\Generator as Faker;
$factory->define(\ProcessMaker\Model\ProcessCategory::class, function (Faker $faker) {
return [
'CATEGORY_UID' => G::generateUniqueID(),
'CATEGORY_PARENT' => '',
2019-05-02 14:48:50 -04:00
'CATEGORY_NAME' => $faker->sentence(5),
2019-05-02 12:46:53 -04:00
'CATEGORY_ICON' => '',
];
});