mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
33 lines
401 B
PHP
33 lines
401 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\DataMapper;
|
||
|
|
||
|
/**
|
||
|
* ClientSettings
|
||
|
*/
|
||
|
class ClientSettings extends BaseSettings
|
||
|
{
|
||
|
public $timezone_id;
|
||
|
public $language_id;
|
||
|
public $currency_id;
|
||
|
|
||
|
/**
|
||
|
* @return \stdClass
|
||
|
*
|
||
|
*/
|
||
|
public static function defaults() : \stdClass
|
||
|
{
|
||
|
|
||
|
return (object)[
|
||
|
'timezone_id' => NULL,
|
||
|
'language_id' => NULL,
|
||
|
'currency_id' => NULL,
|
||
|
'payment_terms' => NULL,
|
||
|
];
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|