mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
19b737a25b
* Fixes for tests * fixes for permissions
10 lines
166 B
PHP
10 lines
166 B
PHP
<?php
|
|
|
|
use Faker\Generator as Faker;
|
|
|
|
$factory->define(App\Models\Account::class, function (Faker $faker) {
|
|
return [
|
|
'default_company_id' => 1
|
|
];
|
|
});
|