mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			234 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			234 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| declare(strict_types=1);
 | |
| /** @var \Illuminate\Database\Eloquent\Factory $factory */
 | |
| 
 | |
| use Faker\Generator as Faker;
 | |
| use FireflyIII\User;
 | |
| 
 | |
| $factory->define(User::class, function (Faker $faker) {
 | |
|     return [
 | |
|         //
 | |
|     ];
 | |
| });
 |