mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 18:54:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			1020 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1020 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?php
 | |
| /**
 | |
|  * ModelFactory.php
 | |
|  * Copyright (C) 2016 thegrumpydictator@gmail.com
 | |
|  *
 | |
|  * This software may be modified and distributed under the terms of the
 | |
|  * Creative Commons Attribution-ShareAlike 4.0 International License.
 | |
|  *
 | |
|  * See the LICENSE file for details.
 | |
|  */
 | |
| declare(strict_types = 1);
 | |
| 
 | |
| /*
 | |
| |--------------------------------------------------------------------------
 | |
| | Model Factories
 | |
| |--------------------------------------------------------------------------
 | |
| |
 | |
| | Here you may define all of your model factories. Model factories give
 | |
| | you a convenient way to create models for testing and seeding your
 | |
| | database. Just tell the factory how a default model should look.
 | |
| |
 | |
| */
 | |
| 
 | |
| $factory->define(
 | |
|     FireflyIII\User::class, function (Faker\Generator $faker) {
 | |
|     static $password;
 | |
| 
 | |
|     return [
 | |
|         'name'           => $faker->name,
 | |
|         'email'          => $faker->safeEmail,
 | |
|         'password'       => $password ?: $password = bcrypt('secret'),
 | |
|         'remember_token' => str_random(10),
 | |
|     ];
 | |
| }
 | |
| );
 |