mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-08 15:05:29 +00:00
11 lines
182 B
PHP
11 lines
182 B
PHP
|
|
<?php
|
||
|
|
use League\FactoryMuffin\Facade;
|
||
|
|
|
||
|
|
Facade::define(
|
||
|
|
'Budget',
|
||
|
|
[
|
||
|
|
'name' => 'word',
|
||
|
|
'user_id' => 'factory|User',
|
||
|
|
'class' => 'Category'
|
||
|
|
]
|
||
|
|
);
|