mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 11:12:43 +01:00
12 lines
243 B
PHP
12 lines
243 B
PHP
|
<?php
|
||
|
|
||
|
use App\DataMapper\ClientSettings;
|
||
|
use App\DataMapper\CompanySettings;
|
||
|
use Faker\Generator as Faker;
|
||
|
|
||
|
$factory->define(App\Models\Task::class, function (Faker $faker) {
|
||
|
return [
|
||
|
'description' => $faker->text(50),
|
||
|
];
|
||
|
});
|