mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
86 lines
1.4 KiB
PHP
86 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Utils;
|
|
|
|
class TruthSource
|
|
{
|
|
public $company;
|
|
|
|
public $user;
|
|
|
|
public $company_user;
|
|
|
|
public $company_token;
|
|
|
|
public $premium_hosted;
|
|
|
|
public function setPremiumHosted($premium_hosted)
|
|
{
|
|
$this->premium_hosted = $premium_hosted;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function setCompanyUser($company_user)
|
|
{
|
|
$this->company_user = $company_user;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function setUser($user)
|
|
{
|
|
$this->user = $user;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function setCompany($company)
|
|
{
|
|
$this->company = $company;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function setCompanyToken($company_token)
|
|
{
|
|
$this->company_token = $company_token;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getPremiumHosted()
|
|
{
|
|
return $this->premium_hosted;
|
|
}
|
|
|
|
public function getCompany()
|
|
{
|
|
return $this->company;
|
|
}
|
|
|
|
public function getCompanyUser()
|
|
{
|
|
return $this->company_user;
|
|
}
|
|
|
|
public function getUser()
|
|
{
|
|
return $this->user;
|
|
}
|
|
|
|
public function getCompanyToken()
|
|
{
|
|
return $this->company_token;
|
|
}
|
|
}
|