invoiceninja/app/Jobs/Company/CreateCompany.php
David Bomba 4abe61f493
Fix for tests, set return types (#2524)
* View composers

* Saving client and contacts

*  saving client and contacts

* update client job

* unique emails

* fix for tests
2018-11-27 18:24:26 +11:00

52 lines
1.0 KiB
PHP

<?php
namespace App\Jobs\Company;
use App\Events\UserSignedUp;
use App\Utils\Traits\MakesHash;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Http\Request;
use App\Models\Company;
class CreateCompany
{
use MakesHash;
use Dispatchable;
protected $request;
protected $account;
/**
* Create a new job instance.
*
* @return void
*/
public function __construct(Request $request, $account = false)
{
$this->request = $request;
$this->account = $account;
}
/**
* Execute the job.
*
* @return void
*/
public function handle() : ?Company
{
$company = new Company();
$company->name = $this->request->first_name . ' ' . $this->request->last_name;
$company->account_id = $this->account->id;
$company->company_key = $this->createHash();
$company->db = config('database.default');
$company->ip = $this->request->ip();
$company->save();
return $company;
}
}