mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
9a19f7fd4c
* BaseController cleanup * Working on invoice designs * Working on invoice designs * working on invoice designs * working on invoice designs * invoice designs * Working on Invoice Designs * Fixes for user settings object * Working on invoice designs * Fixes for encoded user settings * Working on contact localized invoice pdfs * working on invoice designs * Fix for invoice update 500 error
41 lines
1.0 KiB
PHP
41 lines
1.0 KiB
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\Company;
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
class CompanyFactory
|
|
{
|
|
use MakesHash;
|
|
|
|
/**
|
|
* @param int $account_id
|
|
* @return Company
|
|
*/
|
|
public function create(int $account_id) :Company
|
|
{
|
|
$company = new Company;
|
|
// $company->name = '';
|
|
$company->account_id = $account_id;
|
|
$company->company_key = $this->createHash();
|
|
$company->settings = CompanySettings::defaults();
|
|
$company->db = config('database.default');
|
|
//$company->custom_fields = (object) ['invoice1' => '1', 'invoice2' => '2', 'client1'=>'3'];
|
|
$company->custom_fields = (object) [];
|
|
$company->subdomain = '';
|
|
|
|
return $company;
|
|
}
|
|
}
|