mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 15:57:33 -04:00 
			
		
		
		
	* Remove backup column from schema * Add slack webhooks to company user table * Preview route * remove json column from company gateway * fixes for testS * Fixes for typos
		
			
				
	
	
		
			29 lines
		
	
	
		
			772 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			772 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Invoice Ninja (https://invoiceninja.com)
 | |
|  *
 | |
|  * @link https://github.com/invoiceninja/invoiceninja source repository
 | |
|  *
 | |
|  * @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
 | |
|  *
 | |
|  * @license https://opensource.org/licenses/AAL
 | |
|  */
 | |
| 
 | |
| namespace App\Factory;
 | |
| 
 | |
| use App\DataMapper\CompanySettings;
 | |
| use App\Models\CompanyUser;
 | |
| 
 | |
| class CompanyUserFactory
 | |
| {
 | |
|     public static function create($user_id, $company_id, $account_id) :CompanyUser
 | |
|     {
 | |
|         $company_user = new CompanyUser;
 | |
|         $company_user->user_id = $user_id;
 | |
|         $company_user->company_id = $company_id;
 | |
|         $company_user->account_id = $account_id;
 | |
|         $company_user->notifications = CompanySettings::notificationDefaults();
 | |
|         return $company_user;
 | |
|     }
 | |
| }
 |