mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 02:07:30 -04:00 
			
		
		
		
	* Working on projects and tasks * Fixes for company transformer * projects and tasks factories
		
			
				
	
	
		
			12 lines
		
	
	
		
			243 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			243 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| use App\DataMapper\ClientSettings;
 | |
| use App\DataMapper\CompanySettings;
 | |
| use Faker\Generator as Faker;
 | |
| 
 | |
| $factory->define(App\Models\Task::class, function (Faker $faker) {
 | |
|     return [
 | |
|         'description' => $faker->text(50),
 | |
|     ];
 | |
| });
 |