mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2026-01-06 16:20:49 -05:00
* Default database connection - set defaults for engine and strict * Working on tests for refactored model * Fixes for tests, use polymorphic relationships for Invitations * skin the password reset pages
10 lines
143 B
PHP
10 lines
143 B
PHP
<?php
|
|
|
|
use Faker\Generator as Faker;
|
|
|
|
$factory->define(App\Models\Account::class, function (Faker $faker) {
|
|
return [
|
|
//
|
|
];
|
|
});
|