mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-30 12:43:57 -06:00
12 lines
258 B
PHP
12 lines
258 B
PHP
<?php
|
|
use League\FactoryMuffin\Facade;
|
|
|
|
Facade::define(
|
|
'Account',
|
|
[
|
|
'user_id' => 'factory|User',
|
|
'account_type_id' => 'factory|AccountType',
|
|
'name' => 'word',
|
|
'active' => 'boolean'
|
|
]
|
|
); |