Import statements and update configuration.

This commit is contained in:
James Cole
2025-05-27 16:57:36 +02:00
parent 7c04c4c2bc
commit c074fec0a7
165 changed files with 530 additions and 335 deletions

View File

@@ -32,46 +32,46 @@ class AccountType extends Model
{
use ReturnsIntegerIdTrait;
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const string ASSET = 'Asset account';
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const string BENEFICIARY = 'Beneficiary account';
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const string CASH = 'Cash account';
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const string CREDITCARD = 'Credit card';
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const string DEBT = 'Debt';
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const string DEFAULT = 'Default account';
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const string EXPENSE = 'Expense account';
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const string IMPORT = 'Import account';
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const string INITIAL_BALANCE = 'Initial balance account';
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const string LIABILITY_CREDIT = 'Liability credit account';
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const string LOAN = 'Loan';
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const string MORTGAGE = 'Mortgage';
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const string RECONCILIATION = 'Reconciliation account';
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const string REVENUE = 'Revenue account';
protected $casts

View File

@@ -36,13 +36,13 @@ class AutoBudget extends Model
use ReturnsIntegerIdTrait;
use SoftDeletes;
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const int AUTO_BUDGET_ADJUSTED = 3;
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const int AUTO_BUDGET_RESET = 1;
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const int AUTO_BUDGET_ROLLOVER = 2;
protected $casts
= [

View File

@@ -36,16 +36,16 @@ class RecurrenceRepetition extends Model
use ReturnsIntegerIdTrait;
use SoftDeletes;
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const int WEEKEND_DO_NOTHING = 1;
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const int WEEKEND_SKIP_CREATION = 2;
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const int WEEKEND_TO_FRIDAY = 3;
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const int WEEKEND_TO_MONDAY = 4;
protected $casts

View File

@@ -36,25 +36,25 @@ class TransactionType extends Model
use ReturnsIntegerIdTrait;
use SoftDeletes;
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const string DEPOSIT = 'Deposit';
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const string INVALID = 'Invalid';
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const string LIABILITY_CREDIT = 'Liability credit';
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const string OPENING_BALANCE = 'Opening balance';
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const string RECONCILIATION = 'Reconciliation';
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const string TRANSFER = 'Transfer';
#[\Deprecated] /** @deprecated */
#[Deprecated] /** @deprecated */
public const string WITHDRAWAL = 'Withdrawal';
protected $casts