diff --git a/app/Import/Converter/Amount.php b/app/Import/Converter/Amount.php index 274f9b5457..3b8db1f12f 100644 --- a/app/Import/Converter/Amount.php +++ b/app/Import/Converter/Amount.php @@ -56,6 +56,8 @@ class Amount extends BasicConverter implements ConverterInterface $value = str_replace($search, '', $value); } + $this->setCertainty(90); + return round(floatval($value), 4); diff --git a/app/Import/Converter/AssetAccountIban.php b/app/Import/Converter/AssetAccountIban.php index acc1389335..3cbe47bc91 100644 --- a/app/Import/Converter/AssetAccountIban.php +++ b/app/Import/Converter/AssetAccountIban.php @@ -35,6 +35,8 @@ class AssetAccountIban extends BasicConverter implements ConverterInterface Log::debug('Going to convert ', ['value' => $value]); if (strlen($value) === 0) { + $this->setCertainty(0); + return new Account; } @@ -46,6 +48,7 @@ class AssetAccountIban extends BasicConverter implements ConverterInterface Log::debug('Found account in mapping. Should exist.', ['value' => $value, 'map' => $this->mapping[$value]]); $account = $repository->find(intval($this->mapping[$value])); if (!is_null($account->id)) { + $this->setCertainty(100); Log::debug('Found account by ID', ['id' => $account->id]); return $account; @@ -56,6 +59,7 @@ class AssetAccountIban extends BasicConverter implements ConverterInterface $account = $repository->findByIban($value, [AccountType::ASSET]); if (!is_null($account->id)) { Log::debug('Found account by IBAN', ['id' => $account->id]); + $this->setCertainty(50); return $account; } @@ -65,6 +69,7 @@ class AssetAccountIban extends BasicConverter implements ConverterInterface ['name' => 'Account with IBAN ' . $value, 'iban' => $value, 'user' => $this->user->id, 'accountType' => 'asset', 'virtualBalance' => 0, 'active' => true] ); + $this->setCertainty(100); return $account; } diff --git a/app/Import/Converter/AssetAccountName.php b/app/Import/Converter/AssetAccountName.php index e1b10b222a..5b309c7702 100644 --- a/app/Import/Converter/AssetAccountName.php +++ b/app/Import/Converter/AssetAccountName.php @@ -35,6 +35,7 @@ class AssetAccountName extends BasicConverter implements ConverterInterface Log::debug('Going to convert using AssetAccountName', ['value' => $value]); if (strlen($value) === 0) { + $this->setCertainty(0); return new Account; } @@ -47,7 +48,7 @@ class AssetAccountName extends BasicConverter implements ConverterInterface $account = $repository->find(intval($this->mapping[$value])); if (!is_null($account->id)) { Log::debug('Found account by ID', ['id' => $account->id]); - + $this->setCertainty(100); return $account; } } @@ -65,6 +66,7 @@ class AssetAccountName extends BasicConverter implements ConverterInterface ['name' => $value, 'iban' => null, 'openingBalance' => 0, 'user' => $this->user->id, 'accountType' => 'asset', 'virtualBalance' => 0, 'active' => true] ); + $this->setCertainty(100); return $account; diff --git a/app/Import/Converter/AssetAccountNumber.php b/app/Import/Converter/AssetAccountNumber.php index d2373e23c5..aacef8ae7a 100644 --- a/app/Import/Converter/AssetAccountNumber.php +++ b/app/Import/Converter/AssetAccountNumber.php @@ -57,7 +57,7 @@ class AssetAccountNumber extends BasicConverter implements ConverterInterface $account = $repository->findByAccountNumber($value, [AccountType::ASSET]); if (!is_null($account->id)) { Log::debug('Found account by name', ['id' => $account->id]); - + $this->setCertainty(50); return $account; } @@ -66,6 +66,7 @@ class AssetAccountNumber extends BasicConverter implements ConverterInterface ['name' => 'Account with number ' . $value, 'openingBalance' => 0, 'iban' => null, 'user' => $this->user->id, 'accountType' => 'asset', 'virtualBalance' => 0, 'active' => true] ); + $this->setCertainty(100); return $account; diff --git a/app/Import/Converter/BillId.php b/app/Import/Converter/BillId.php index 00fa42d0ef..3d6a4cc67e 100644 --- a/app/Import/Converter/BillId.php +++ b/app/Import/Converter/BillId.php @@ -11,7 +11,6 @@ declare(strict_types = 1); namespace FireflyIII\Import\Converter; -use FireflyIII\Exceptions\FireflyException; use FireflyIII\Models\Bill; use FireflyIII\Repositories\Bill\BillRepositoryInterface; use Log; @@ -35,6 +34,8 @@ class BillId extends BasicConverter implements ConverterInterface Log::debug('Going to convert using BillId', ['value' => $value]); if ($value === 0) { + $this->setCertainty(0); + return new Bill; } @@ -46,6 +47,7 @@ class BillId extends BasicConverter implements ConverterInterface $bill = $repository->find(intval($this->mapping[$value])); if (!is_null($bill->id)) { Log::debug('Found bill by ID', ['id' => $bill->id]); + $this->setCertainty(100); return $bill; } @@ -55,11 +57,15 @@ class BillId extends BasicConverter implements ConverterInterface $bill = $repository->find($value); if (!is_null($bill->id)) { Log::debug('Found bill by ID ', ['id' => $bill->id]); + $this->setCertainty(100); return $bill; } // should not really happen. If the ID does not match FF, what is FF supposed to do? + + $this->setCertainty(0); + return new Bill; } diff --git a/app/Import/Converter/BillName.php b/app/Import/Converter/BillName.php index 7dd8241e3c..6cb443c367 100644 --- a/app/Import/Converter/BillName.php +++ b/app/Import/Converter/BillName.php @@ -35,6 +35,7 @@ class BillName extends BasicConverter implements ConverterInterface Log::debug('Going to convert using BillName', ['value' => $value]); if (strlen($value) === 0) { + $this->setCertainty(0); return new Bill; } @@ -46,7 +47,7 @@ class BillName extends BasicConverter implements ConverterInterface $bill = $repository->find(intval($this->mapping[$value])); if (!is_null($bill->id)) { Log::debug('Found bill by ID', ['id' => $bill->id]); - + $this->setCertainty(100); return $bill; } } @@ -55,7 +56,7 @@ class BillName extends BasicConverter implements ConverterInterface $bill = $repository->findByName($value); if (!is_null($bill->id)) { Log::debug('Found bill by name ', ['id' => $bill->id]); - + $this->setCertainty(100); return $bill; } @@ -75,6 +76,7 @@ class BillName extends BasicConverter implements ConverterInterface ] ); + $this->setCertainty(100); return $bill; diff --git a/app/Import/Converter/BudgetId.php b/app/Import/Converter/BudgetId.php index 71178f3a67..6e50fb0e20 100644 --- a/app/Import/Converter/BudgetId.php +++ b/app/Import/Converter/BudgetId.php @@ -35,6 +35,7 @@ class BudgetId extends BasicConverter implements ConverterInterface Log::debug('Going to convert using BudgetId', ['value' => $value]); if ($value === 0) { + $this->setCertainty(0); return new Budget; } @@ -46,6 +47,7 @@ class BudgetId extends BasicConverter implements ConverterInterface $budget = $repository->find(intval($this->mapping[$value])); if (!is_null($budget->id)) { Log::debug('Found budget by ID', ['id' => $budget->id]); + $this->setCertainty(100); return $budget; } @@ -55,11 +57,12 @@ class BudgetId extends BasicConverter implements ConverterInterface $budget = $repository->find($value); if (!is_null($budget->id)) { Log::debug('Found budget by ID ', ['id' => $budget->id]); - + $this->setCertainty(100); return $budget; } // should not really happen. If the ID does not match FF, what is FF supposed to do? + $this->setCertainty(0); return new Budget; } diff --git a/app/Import/Converter/BudgetName.php b/app/Import/Converter/BudgetName.php index 8aeab92dbf..59bcaf8bbb 100644 --- a/app/Import/Converter/BudgetName.php +++ b/app/Import/Converter/BudgetName.php @@ -35,6 +35,7 @@ class BudgetName extends BasicConverter implements ConverterInterface Log::debug('Going to convert using BudgetName', ['value' => $value]); if (strlen($value) === 0) { + $this->setCertainty(0); return new Budget; } @@ -46,7 +47,7 @@ class BudgetName extends BasicConverter implements ConverterInterface $budget = $repository->find(intval($this->mapping[$value])); if (!is_null($budget->id)) { Log::debug('Found budget by ID', ['id' => $budget->id]); - + $this->setCertainty(100); return $budget; } } @@ -55,7 +56,7 @@ class BudgetName extends BasicConverter implements ConverterInterface $budget = $repository->findByName($value); if (!is_null($budget->id)) { Log::debug('Found budget by name ', ['id' => $budget->id]); - + $this->setCertainty(100); return $budget; } @@ -66,6 +67,7 @@ class BudgetName extends BasicConverter implements ConverterInterface 'user_id' => $this->user->id, ] ); + $this->setCertainty(100); return $budget; diff --git a/app/Import/Converter/CategoryId.php b/app/Import/Converter/CategoryId.php index 4704a81f43..03fefa2cd5 100644 --- a/app/Import/Converter/CategoryId.php +++ b/app/Import/Converter/CategoryId.php @@ -35,6 +35,7 @@ class CategoryId extends BasicConverter implements ConverterInterface Log::debug('Going to convert using CategoryId', ['value' => $value]); if ($value === 0) { + $this->setCertainty(0); return new Category; } @@ -46,7 +47,7 @@ class CategoryId extends BasicConverter implements ConverterInterface $category = $repository->find(intval($this->mapping[$value])); if (!is_null($category->id)) { Log::debug('Found category by ID', ['id' => $category->id]); - + $this->setCertainty(100); return $category; } } @@ -55,11 +56,12 @@ class CategoryId extends BasicConverter implements ConverterInterface $category = $repository->find($value); if (!is_null($category->id)) { Log::debug('Found category by ID ', ['id' => $category->id]); - + $this->setCertainty(100); return $category; } // should not really happen. If the ID does not match FF, what is FF supposed to do? + $this->setCertainty(0); return new Category; } diff --git a/app/Import/Converter/CategoryName.php b/app/Import/Converter/CategoryName.php index bfcefeb75b..ac4f5ce720 100644 --- a/app/Import/Converter/CategoryName.php +++ b/app/Import/Converter/CategoryName.php @@ -35,6 +35,7 @@ class CategoryName extends BasicConverter implements ConverterInterface Log::debug('Going to convert using CategoryName', ['value' => $value]); if (strlen($value) === 0) { + $this->setCertainty(0); return new Category; } @@ -46,7 +47,7 @@ class CategoryName extends BasicConverter implements ConverterInterface $category = $repository->find(intval($this->mapping[$value])); if (!is_null($category->id)) { Log::debug('Found category by ID', ['id' => $category->id]); - + $this->setCertainty(100); return $category; } } @@ -55,7 +56,7 @@ class CategoryName extends BasicConverter implements ConverterInterface $category = $repository->findByName($value); if (!is_null($category->id)) { Log::debug('Found category by name ', ['id' => $category->id]); - + $this->setCertainty(100); return $category; } @@ -66,6 +67,7 @@ class CategoryName extends BasicConverter implements ConverterInterface 'user_id' => $this->user->id, ] ); + $this->setCertainty(100); return $category; diff --git a/app/Import/Converter/CurrencyCode.php b/app/Import/Converter/CurrencyCode.php index 3ac41ce074..9a448eacf5 100644 --- a/app/Import/Converter/CurrencyCode.php +++ b/app/Import/Converter/CurrencyCode.php @@ -40,7 +40,7 @@ class CurrencyCode extends BasicConverter implements ConverterInterface $currency = $repository->find(intval($this->mapping[$value])); if (!is_null($currency->id)) { Log::debug('Found currency by ID', ['id' => $currency->id]); - + $this->setCertainty(100); return $currency; } } @@ -49,7 +49,7 @@ class CurrencyCode extends BasicConverter implements ConverterInterface $currency = $repository->findByCode($value); if (!is_null($currency->id)) { Log::debug('Found currency by code', ['id' => $currency->id]); - + $this->setCertainty(100); return $currency; } $currency = $repository->store( @@ -59,6 +59,7 @@ class CurrencyCode extends BasicConverter implements ConverterInterface 'symbol' => $value, ] ); + $this->setCertainty(100); return $currency; } diff --git a/app/Import/Converter/CurrencyId.php b/app/Import/Converter/CurrencyId.php index 1bc4314ac5..08b8b43775 100644 --- a/app/Import/Converter/CurrencyId.php +++ b/app/Import/Converter/CurrencyId.php @@ -35,6 +35,7 @@ class CurrencyId extends BasicConverter implements ConverterInterface Log::debug('Going to convert using CurrencyId', ['value' => $value]); if ($value === 0) { + $this->setCertainty(0); return new TransactionCurrency; } @@ -46,7 +47,7 @@ class CurrencyId extends BasicConverter implements ConverterInterface $currency = $repository->find(intval($this->mapping[$value])); if (!is_null($currency->id)) { Log::debug('Found currency by ID', ['id' => $currency->id]); - + $this->setCertainty(100); return $currency; } } @@ -55,10 +56,10 @@ class CurrencyId extends BasicConverter implements ConverterInterface $currency = $repository->find($value); if (!is_null($currency->id)) { Log::debug('Found currency by ID ', ['id' => $currency->id]); - + $this->setCertainty(100); return $currency; } - + $this->setCertainty(0); // should not really happen. If the ID does not match FF, what is FF supposed to do? return new TransactionCurrency; diff --git a/app/Import/Converter/CurrencyName.php b/app/Import/Converter/CurrencyName.php index f28194d018..f91c2aa377 100644 --- a/app/Import/Converter/CurrencyName.php +++ b/app/Import/Converter/CurrencyName.php @@ -34,6 +34,7 @@ class CurrencyName extends BasicConverter implements ConverterInterface Log::debug('Going to convert using CurrencyName', ['value' => $value]); if ($value === 0) { + $this->setCertainty(0); return new TransactionCurrency; } @@ -45,7 +46,7 @@ class CurrencyName extends BasicConverter implements ConverterInterface $currency = $repository->find(intval($this->mapping[$value])); if (!is_null($currency->id)) { Log::debug('Found currency by ID', ['id' => $currency->id]); - + $this->setCertainty(100); return $currency; } } @@ -54,7 +55,7 @@ class CurrencyName extends BasicConverter implements ConverterInterface $currency = $repository->findByName($value); if (!is_null($currency->id)) { Log::debug('Found currency by name ', ['id' => $currency->id]); - + $this->setCertainty(100); return $currency; } @@ -66,6 +67,7 @@ class CurrencyName extends BasicConverter implements ConverterInterface 'symbol' => strtoupper(substr($value, 0, 1)), ] ); + $this->setCertainty(100); return $currency; diff --git a/app/Import/Converter/CurrencySymbol.php b/app/Import/Converter/CurrencySymbol.php index 2f829d26d0..00977f3349 100644 --- a/app/Import/Converter/CurrencySymbol.php +++ b/app/Import/Converter/CurrencySymbol.php @@ -34,6 +34,7 @@ class CurrencySymbol extends BasicConverter implements ConverterInterface Log::debug('Going to convert using CurrencySymbol', ['value' => $value]); if ($value === 0) { + $this->setCertainty(0); return new TransactionCurrency; } @@ -45,7 +46,7 @@ class CurrencySymbol extends BasicConverter implements ConverterInterface $currency = $repository->find(intval($this->mapping[$value])); if (!is_null($currency->id)) { Log::debug('Found currency by ID', ['id' => $currency->id]); - + $this->setCertainty(100); return $currency; } } @@ -54,7 +55,7 @@ class CurrencySymbol extends BasicConverter implements ConverterInterface $currency = $repository->findBySymbol($value); if (!is_null($currency->id)) { Log::debug('Found currency by symbol ', ['id' => $currency->id]); - + $this->setCertainty(100); return $currency; } @@ -66,6 +67,7 @@ class CurrencySymbol extends BasicConverter implements ConverterInterface 'symbol' => $value, ] ); + $this->setCertainty(100); return $currency; diff --git a/app/Import/Converter/Date.php b/app/Import/Converter/Date.php index c9e9676b6f..d9619631a2 100644 --- a/app/Import/Converter/Date.php +++ b/app/Import/Converter/Date.php @@ -42,7 +42,7 @@ class Date extends BasicConverter implements ConverterInterface throw new FireflyException(sprintf('Cannot convert "%s" to a valid date using format "%s".', $value, $this->config['date-format'])); } Log::debug('Converted date', ['converted' => $date->toAtomString()]); - + $this->setCertainty(100); return $date; } } \ No newline at end of file diff --git a/app/Import/Converter/Description.php b/app/Import/Converter/Description.php index 18b90ee92e..a8ce132873 100644 --- a/app/Import/Converter/Description.php +++ b/app/Import/Converter/Description.php @@ -29,6 +29,7 @@ class Description extends BasicConverter implements ConverterInterface // this should replace all control characters // but leave utf8 intact: $value = preg_replace('/[\x00-\x1F\x80-\x9F]/u', '', $value); + $this->setCertainty(100); return strval($value); diff --git a/app/Import/Converter/INGDebetCredit.php b/app/Import/Converter/INGDebetCredit.php index cede9dba3a..a6c4da9d69 100644 --- a/app/Import/Converter/INGDebetCredit.php +++ b/app/Import/Converter/INGDebetCredit.php @@ -33,9 +33,11 @@ class INGDebetCredit extends BasicConverter implements ConverterInterface if ($value === 'Af') { Log::debug('Return -1'); + $this->setCertainty(100); return -1; } + $this->setCertainty(100); Log::debug('Return 1'); return 1; diff --git a/app/Import/Converter/OpposingAccountIban.php b/app/Import/Converter/OpposingAccountIban.php index c59f4ffb3c..674134c43b 100644 --- a/app/Import/Converter/OpposingAccountIban.php +++ b/app/Import/Converter/OpposingAccountIban.php @@ -34,6 +34,7 @@ class OpposingAccountIban extends BasicConverter implements ConverterInterface Log::debug('Going to convert ', ['value' => $value]); if (strlen($value) === 0) { + $this->setCertainty(0); return new Account; } @@ -46,7 +47,7 @@ class OpposingAccountIban extends BasicConverter implements ConverterInterface $account = $repository->find(intval($this->mapping[$value])); if (!is_null($account->id)) { Log::debug('Found account by ID', ['id' => $account->id]); - + $this->setCertainty(100); return $account; } } @@ -59,6 +60,7 @@ class OpposingAccountIban extends BasicConverter implements ConverterInterface 'The match between IBAN and account is uncertain because the type of transactions may not have been determined.', ['id' => $account->id, 'iban' => $value] ); + $this->setCertainty(50); return $account; } @@ -67,6 +69,7 @@ class OpposingAccountIban extends BasicConverter implements ConverterInterface ['name' => $value, 'iban' => $value, 'user' => $this->user->id, 'accountType' => 'import', 'virtualBalance' => 0, 'active' => true, 'openingBalance' => 0] ); + $this->setCertainty(100); return $account; } diff --git a/app/Import/Converter/OpposingAccountName.php b/app/Import/Converter/OpposingAccountName.php index a5bb8138f2..9d8b4d8623 100644 --- a/app/Import/Converter/OpposingAccountName.php +++ b/app/Import/Converter/OpposingAccountName.php @@ -46,7 +46,7 @@ class OpposingAccountName extends BasicConverter implements ConverterInterface $account = $repository->find(intval($this->mapping[$value])); if (!is_null($account->id)) { Log::debug('Found account by ID', ['id' => $account->id]); - + $this->setCertainty(100); return $account; } } @@ -59,7 +59,7 @@ class OpposingAccountName extends BasicConverter implements ConverterInterface 'The match between name and account is uncertain because the type of transactions may not have been determined.', ['id' => $account->id, 'name' => $value] ); - + $this->setCertainty(50); return $account; } @@ -68,6 +68,7 @@ class OpposingAccountName extends BasicConverter implements ConverterInterface 'openingBalance' => 0, ] ); + $this->setCertainty(100); return $account; } diff --git a/app/Import/Converter/OpposingAccountNumber.php b/app/Import/Converter/OpposingAccountNumber.php index 545baa22c1..e47e596a38 100644 --- a/app/Import/Converter/OpposingAccountNumber.php +++ b/app/Import/Converter/OpposingAccountNumber.php @@ -35,6 +35,7 @@ class OpposingAccountNumber extends BasicConverter implements ConverterInterface Log::debug('Going to convert using OpposingAccountNumber', ['value' => $value]); if (strlen($value) === 0) { + $this->setCertainty(0); return new Account; } @@ -47,7 +48,7 @@ class OpposingAccountNumber extends BasicConverter implements ConverterInterface $account = $repository->find(intval($this->mapping[$value])); if (!is_null($account->id)) { Log::debug('Found account by ID', ['id' => $account->id]); - + $this->setCertainty(100); return $account; } } @@ -55,8 +56,8 @@ class OpposingAccountNumber extends BasicConverter implements ConverterInterface // not mapped? Still try to find it first: $account = $repository->findByAccountNumber($value, []); if (!is_null($account->id)) { - Log::debug('Found account by name', ['id' => $account->id]); - + Log::debug('Found account by number', ['id' => $account->id]); + $this->setCertainty(50); return $account; } @@ -65,6 +66,7 @@ class OpposingAccountNumber extends BasicConverter implements ConverterInterface ['name' => 'Account with number ' . $value, 'openingBalance' => 0, 'iban' => null, 'user' => $this->user->id, 'accountType' => 'asset', 'virtualBalance' => 0, 'active' => true] ); + $this->setCertainty(100); return $account; diff --git a/app/Import/Converter/RabobankDebetCredit.php b/app/Import/Converter/RabobankDebetCredit.php index 01feb80c59..3908b3a062 100644 --- a/app/Import/Converter/RabobankDebetCredit.php +++ b/app/Import/Converter/RabobankDebetCredit.php @@ -32,11 +32,13 @@ class RabobankDebetCredit extends BasicConverter implements ConverterInterface if ($value === 'D') { Log::debug('Return -1'); + $this->setCertainty(100); return -1; } Log::debug('Return 1'); + $this->setCertainty(100); return 1; } diff --git a/app/Import/Converter/TagsComma.php b/app/Import/Converter/TagsComma.php index 7b02e7972b..63c8e3e85c 100644 --- a/app/Import/Converter/TagsComma.php +++ b/app/Import/Converter/TagsComma.php @@ -34,6 +34,7 @@ class TagsComma extends BasicConverter implements ConverterInterface Log::debug('Going to convert using TagsComma', ['value' => $value]); if (strlen($value) === 0) { + $this->setCertainty(0); return new Collection; } $parts = array_unique(explode(',', $value)); @@ -79,6 +80,8 @@ class TagsComma extends BasicConverter implements ConverterInterface Log::debug('Created new tag', ['name' => $part, 'id' => $tag->id]); $set->push($tag); } + $this->setCertainty(100); + return $set; } } \ No newline at end of file diff --git a/app/Import/Converter/TagsSpace.php b/app/Import/Converter/TagsSpace.php index 211e85c0d3..c5c5f9a505 100644 --- a/app/Import/Converter/TagsSpace.php +++ b/app/Import/Converter/TagsSpace.php @@ -34,6 +34,7 @@ class TagsSpace extends BasicConverter implements ConverterInterface Log::debug('Going to convert using TagsSpace', ['value' => $value]); if (strlen($value) === 0) { + $this->setCertainty(0); return new Collection; } $parts = array_unique(explode(' ', $value)); @@ -79,6 +80,7 @@ class TagsSpace extends BasicConverter implements ConverterInterface Log::debug('Created new tag', ['name' => $part, 'id' => $tag->id]); $set->push($tag); } + $this->setCertainty(100); return $set; diff --git a/public/result.html b/public/result.html new file mode 100644 index 0000000000..d28b8ce89d --- /dev/null +++ b/public/result.html @@ -0,0 +1,932 @@ +
File | Problem |
---|---|
/sites/firefly-iii/app/Console/Commands/UpgradeFireflyInstructions.php | Unexpected token: ??, line: 56, col: 38, file: /sites/firefly-iii/app/Console/Commands/UpgradeFireflyInstructions.php. |
/sites/firefly-iii/app/Helpers/Collection/Balance.php | Unexpected token: ??, line: 51, col: 37, file: /sites/firefly-iii/app/Helpers/Collection/Balance.php. |
/sites/firefly-iii/app/Helpers/Collection/BalanceLine.php | Unexpected token: ??, line: 82, col: 30, file: /sites/firefly-iii/app/Helpers/Collection/BalanceLine.php. |
/sites/firefly-iii/app/Helpers/Collection/BillLine.php | Unexpected token: ??, line: 45, col: 30, file: /sites/firefly-iii/app/Helpers/Collection/BillLine.php. |
/sites/firefly-iii/app/Helpers/Collection/BudgetLine.php | Unexpected token: ??, line: 43, col: 30, file: /sites/firefly-iii/app/Helpers/Collection/BudgetLine.php. |
/sites/firefly-iii/app/Helpers/Csv/Converter/AssetAccountIban.php | Unexpected token: DEFAULT, line: 59, col: 55, file: /sites/firefly-iii/app/Helpers/Csv/Converter/AssetAccountIban.php. |
/sites/firefly-iii/app/Helpers/Csv/Converter/AssetAccountName.php | Unexpected token: DEFAULT, line: 39, col: 55, file: /sites/firefly-iii/app/Helpers/Csv/Converter/AssetAccountName.php. |
/sites/firefly-iii/app/Helpers/Csv/Converter/AssetAccountNumber.php | Unexpected token: ??, line: 40, col: 31, file: /sites/firefly-iii/app/Helpers/Csv/Converter/AssetAccountNumber.php. |
/sites/firefly-iii/app/Helpers/Csv/Converter/Description.php | Unexpected token: ??, line: 27, col: 51, file: /sites/firefly-iii/app/Helpers/Csv/Converter/Description.php. |
/sites/firefly-iii/app/Helpers/Csv/Data.php | Unexpected token: ??, line: 70, col: 38, file: /sites/firefly-iii/app/Helpers/Csv/Data.php. |
/sites/firefly-iii/app/Helpers/Csv/Importer.php | Unexpected token: ??, line: 185, col: 54, file: /sites/firefly-iii/app/Helpers/Csv/Importer.php. |
/sites/firefly-iii/app/Helpers/Csv/Mapper/AssetAccount.php | Unexpected token: ??, line: 41, col: 36, file: /sites/firefly-iii/app/Helpers/Csv/Mapper/AssetAccount.php. |
/sites/firefly-iii/app/Helpers/Csv/PostProcessing/Amount.php | Unexpected token: ??, line: 30, col: 55, file: /sites/firefly-iii/app/Helpers/Csv/PostProcessing/Amount.php. |
/sites/firefly-iii/app/Helpers/Csv/PostProcessing/AssetAccount.php | Unexpected token: ??, line: 74, col: 62, file: /sites/firefly-iii/app/Helpers/Csv/PostProcessing/AssetAccount.php. |
/sites/firefly-iii/app/Helpers/Csv/PostProcessing/Description.php | Unexpected token: ??, line: 29, col: 65, file: /sites/firefly-iii/app/Helpers/Csv/PostProcessing/Description.php. |
/sites/firefly-iii/app/Helpers/Report/ReportHelper.php | Unexpected token: ??, line: 273, col: 59, file: /sites/firefly-iii/app/Helpers/Report/ReportHelper.php. |
/sites/firefly-iii/app/Http/Controllers/AccountController.php | Unexpected token: ??, line: 169, col: 23, file: /sites/firefly-iii/app/Http/Controllers/AccountController.php. |
/sites/firefly-iii/app/Http/Controllers/BudgetController.php | Unexpected token: DEFAULT, line: 187, col: 69, file: /sites/firefly-iii/app/Http/Controllers/BudgetController.php. |
/sites/firefly-iii/app/Http/Controllers/Chart/AccountController.php | Unexpected token: ??, line: 80, col: 60, file: /sites/firefly-iii/app/Http/Controllers/Chart/AccountController.php. |
/sites/firefly-iii/app/Http/Controllers/CsvController.php | Unexpected token: DEFAULT, line: 202, col: 109, file: /sites/firefly-iii/app/Http/Controllers/CsvController.php. |
/sites/firefly-iii/app/Http/Controllers/ExportController.php | Unexpected token: DEFAULT, line: 107, col: 65, file: /sites/firefly-iii/app/Http/Controllers/ExportController.php. |
/sites/firefly-iii/app/Http/Controllers/HomeController.php | Unexpected token: DEFAULT, line: 127, col: 73, file: /sites/firefly-iii/app/Http/Controllers/HomeController.php. |
/sites/firefly-iii/app/Http/Controllers/JsonController.php | Unexpected token: DEFAULT, line: 116, col: 60, file: /sites/firefly-iii/app/Http/Controllers/JsonController.php. |
/sites/firefly-iii/app/Http/Controllers/PiggyBankController.php | Unexpected token: DEFAULT, line: 78, col: 93, file: /sites/firefly-iii/app/Http/Controllers/PiggyBankController.php. |
/sites/firefly-iii/app/Http/Controllers/Popup/ReportController.php | Unexpected token: ??, line: 246, col: 59, file: /sites/firefly-iii/app/Http/Controllers/Popup/ReportController.php. |
/sites/firefly-iii/app/Http/Controllers/PreferencesController.php | Unexpected token: DEFAULT, line: 77, col: 71, file: /sites/firefly-iii/app/Http/Controllers/PreferencesController.php. |
/sites/firefly-iii/app/Http/Controllers/ReportController.php | Unexpected token: DEFAULT, line: 83, col: 60, file: /sites/firefly-iii/app/Http/Controllers/ReportController.php. |
/sites/firefly-iii/app/Http/Controllers/RuleGroupController.php | Unexpected token: DEFAULT, line: 189, col: 67, file: /sites/firefly-iii/app/Http/Controllers/RuleGroupController.php. |
/sites/firefly-iii/app/Http/Controllers/Transaction/MassController.php | Unexpected token: DEFAULT, line: 111, col: 92, file: /sites/firefly-iii/app/Http/Controllers/Transaction/MassController.php. |
/sites/firefly-iii/app/Http/Controllers/Transaction/SplitController.php | Unexpected token: ??, line: 68, col: 67, file: /sites/firefly-iii/app/Http/Controllers/Transaction/SplitController.php. |
/sites/firefly-iii/app/Http/Controllers/TransactionController.php | Unexpected token: ??, line: 95, col: 64, file: /sites/firefly-iii/app/Http/Controllers/TransactionController.php. |
/sites/firefly-iii/app/Http/Requests/JournalFormRequest.php | Unexpected token: ??, line: 43, col: 36, file: /sites/firefly-iii/app/Http/Requests/JournalFormRequest.php. |
/sites/firefly-iii/app/Http/Requests/SplitJournalFormRequest.php | Unexpected token: ??, line: 40, col: 68, file: /sites/firefly-iii/app/Http/Requests/SplitJournalFormRequest.php. |
/sites/firefly-iii/app/Http/Requests/TagFormRequest.php | Unexpected token: ??, line: 49, col: 36, file: /sites/firefly-iii/app/Http/Requests/TagFormRequest.php. |
/sites/firefly-iii/app/Http/breadcrumbs.php | Unexpected token: ??, line: 594, col: 56, file: /sites/firefly-iii/app/Http/breadcrumbs.php. |
/sites/firefly-iii/app/Models/AccountType.php | Unexpected token: DEFAULT, line: 35, col: 11, file: /sites/firefly-iii/app/Models/AccountType.php. |
/sites/firefly-iii/app/Models/Tag.php | Unexpected token: ??, line: 81, col: 57, file: /sites/firefly-iii/app/Models/Tag.php. |
/sites/firefly-iii/app/Repositories/Bill/BillRepository.php | Unexpected token: ??, line: 212, col: 48, file: /sites/firefly-iii/app/Repositories/Bill/BillRepository.php. |
/sites/firefly-iii/app/Rules/Triggers/AmountExactly.php | Unexpected token: ??, line: 57, col: 49, file: /sites/firefly-iii/app/Rules/Triggers/AmountExactly.php. |
/sites/firefly-iii/app/Rules/Triggers/AmountLess.php | Unexpected token: ??, line: 57, col: 49, file: /sites/firefly-iii/app/Rules/Triggers/AmountLess.php. |
/sites/firefly-iii/app/Rules/Triggers/AmountMore.php | Unexpected token: ??, line: 57, col: 49, file: /sites/firefly-iii/app/Rules/Triggers/AmountMore.php. |
/sites/firefly-iii/app/Support/Amount.php | Unexpected token: ??, line: 87, col: 61, file: /sites/firefly-iii/app/Support/Amount.php. |
/sites/firefly-iii/app/Support/Migration/TestData.php | Unexpected token: ??, line: 267, col: 77, file: /sites/firefly-iii/app/Support/Migration/TestData.php. |
/sites/firefly-iii/app/Support/Models/TransactionJournalSupport.php | Unexpected token: ??, line: 286, col: 52, file: /sites/firefly-iii/app/Support/Models/TransactionJournalSupport.php. |
/sites/firefly-iii/app/Support/Twig/General.php | Unexpected token: ??, line: 112, col: 44, file: /sites/firefly-iii/app/Support/Twig/General.php. |
/sites/firefly-iii/app/Validation/FireflyValidator.php | Unexpected token: ??, line: 84, col: 33, file: /sites/firefly-iii/app/Validation/FireflyValidator.php. |