mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-23 04:46:44 +00:00
Add newlines and copyright notices.
This commit is contained in:
2
.github/stale.yml
vendored
2
.github/stale.yml
vendored
@@ -55,4 +55,4 @@ limitPerRun: 30
|
||||
|
||||
# issues:
|
||||
# exemptLabels:
|
||||
# - confirmed
|
||||
# - confirmed
|
||||
|
@@ -181,4 +181,4 @@ class ImportController extends Controller
|
||||
return response()->json($manager->createData($resource)->toArray())->header('Content-Type', 'application/vnd.api+json');
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -245,4 +245,4 @@ class TagController extends Controller
|
||||
return response()->json($manager->createData($resource)->toArray())->header('Content-Type', 'application/vnd.api+json');
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -1,5 +1,27 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* ApplyRules.php
|
||||
* Copyright (c) 2018 thegrumpydictator@gmail.com
|
||||
*
|
||||
* This file is part of Firefly III.
|
||||
*
|
||||
* Firefly III is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Firefly III is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace FireflyIII\Console\Commands;
|
||||
|
||||
use Carbon\Carbon;
|
||||
|
@@ -1,5 +1,27 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Cron.php
|
||||
* Copyright (c) 2018 thegrumpydictator@gmail.com
|
||||
*
|
||||
* This file is part of Firefly III.
|
||||
*
|
||||
* Firefly III is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Firefly III is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace FireflyIII\Console\Commands;
|
||||
|
||||
use FireflyIII\Exceptions\FireflyException;
|
||||
|
@@ -1,4 +1,25 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* RequestedReportOnJournals.php
|
||||
* Copyright (c) 2018 thegrumpydictator@gmail.com
|
||||
*
|
||||
* This file is part of Firefly III.
|
||||
*
|
||||
* Firefly III is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Firefly III is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
/**
|
||||
* RequestedReportOnJournals.php
|
||||
|
@@ -940,4 +940,4 @@ class TransactionCollector implements TransactionCollectorInterface
|
||||
$this->query->leftJoin('tag_transaction_journal', 'tag_transaction_journal.transaction_journal_id', '=', 'transaction_journals.id');
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -347,4 +347,4 @@ interface TransactionCollectorInterface
|
||||
* @return TransactionCollectorInterface
|
||||
*/
|
||||
public function withoutCategory(): TransactionCollectorInterface;
|
||||
}
|
||||
}
|
||||
|
@@ -59,4 +59,4 @@ class DoubleTransactionFilter implements FilterInterface
|
||||
|
||||
return $result;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -155,4 +155,4 @@ class NetWorth implements NetWorthInterface
|
||||
$this->currencyRepos = app(CurrencyRepositoryInterface::class);
|
||||
$this->currencyRepos->setUser($this->user);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -57,4 +57,4 @@ interface NetWorthInterface
|
||||
*/
|
||||
public function setUser(User $user): void;
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -72,4 +72,4 @@ class CallbackController extends Controller
|
||||
return redirect(route('import.job.status.index', [$importJob->key]));
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -32,4 +32,4 @@ abstract class FinTSConfigurationSteps
|
||||
public const NEW = 'new';
|
||||
public const CHOOSE_ACCOUNT = 'choose_account';
|
||||
public const GO_FOR_IMPORT = 'go-for-import';
|
||||
}
|
||||
}
|
||||
|
@@ -131,4 +131,4 @@ class FinTSJobConfiguration implements JobConfigurationInterface
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -138,4 +138,4 @@ class YnabJobConfiguration implements JobConfigurationInterface
|
||||
|
||||
return $handler;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -143,4 +143,4 @@ class YnabPrerequisites implements PrerequisitesInterface
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -85,4 +85,4 @@ class FinTSRoutine implements RoutineInterface
|
||||
$this->repository->setUser($importJob->user);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -140,4 +140,4 @@ class YnabRoutine implements RoutineInterface
|
||||
$this->repository = app(ImportJobRepositoryInterface::class);
|
||||
$this->repository->setUser($importJob->user);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -1,4 +1,25 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* CreateRecurringTransactions.php
|
||||
* Copyright (c) 2018 thegrumpydictator@gmail.com
|
||||
*
|
||||
* This file is part of Firefly III.
|
||||
*
|
||||
* Firefly III is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Firefly III is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
|
||||
|
@@ -65,4 +65,4 @@ class IsAssetAccountId implements Rule
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -1,5 +1,27 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* IsBoolean.php
|
||||
* Copyright (c) 2018 thegrumpydictator@gmail.com
|
||||
*
|
||||
* This file is part of Firefly III.
|
||||
*
|
||||
* Firefly III is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Firefly III is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace FireflyIII\Rules;
|
||||
|
||||
use Illuminate\Contracts\Validation\Rule;
|
||||
|
@@ -1,5 +1,27 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* ZeroOrMore.php
|
||||
* Copyright (c) 2018 thegrumpydictator@gmail.com
|
||||
*
|
||||
* This file is part of Firefly III.
|
||||
*
|
||||
* Firefly III is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Firefly III is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace FireflyIII\Rules;
|
||||
|
||||
use Illuminate\Contracts\Validation\Rule;
|
||||
|
@@ -51,4 +51,4 @@ class GetAccountsRequest extends YnabRequest
|
||||
// expect data in [data][accounts]
|
||||
$this->accounts = $result['data']['accounts'] ?? [];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -67,4 +67,4 @@ class GetBudgetsRequest extends YnabRequest
|
||||
}
|
||||
$this->budgets = $freshBudgets;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -55,4 +55,4 @@ class GetTransactionsRequest extends YnabRequest
|
||||
// expect data in [data][transactions]
|
||||
$this->transactions = $result['data']['transactions'] ?? [];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -98,4 +98,4 @@ abstract class YnabRequest
|
||||
$this->token = $token;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -59,4 +59,4 @@ class CLIToken implements BinderInterface
|
||||
}
|
||||
throw new NotFoundHttpException;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -48,4 +48,4 @@ class ConfigurationName implements BinderInterface
|
||||
}
|
||||
throw new NotFoundHttpException;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -36,4 +36,4 @@ abstract class AbstractCronjob
|
||||
*/
|
||||
abstract public function fire(): bool;
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -81,4 +81,4 @@ class RecurringCronjob extends AbstractCronjob
|
||||
$job->handle();
|
||||
app('fireflyconfig')->set('last_rt_job', time());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -118,4 +118,4 @@ class FinTS
|
||||
throw new FireflyException($exception->getMessage());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -46,4 +46,4 @@ class MetadataParser
|
||||
|
||||
return $finTSDescription;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -87,4 +87,4 @@ trait AccountFilter
|
||||
|
||||
return $return; // @codeCoverageIgnore
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -66,4 +66,4 @@ trait TransactionFilter
|
||||
return $return;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -90,4 +90,4 @@ trait BasicDataSupport
|
||||
|
||||
return $result;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -216,4 +216,4 @@ trait CreateStuff
|
||||
throw new FireflyException($e->getMessage());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -250,4 +250,4 @@ trait GetConfigurationData
|
||||
request()->session()->flash('warning', trans('firefly.recurring_cron_long_ago'));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -62,4 +62,4 @@ trait ModelInformation
|
||||
return $count > 2;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -456,4 +456,4 @@ trait PeriodOverview
|
||||
return $return;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -326,4 +326,4 @@ trait RenderPartialViews
|
||||
|
||||
return $result;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -403,4 +403,4 @@ trait RequestInformation
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -199,4 +199,4 @@ trait TransactionCalculation
|
||||
return $collector->getTransactions();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -149,4 +149,4 @@ trait UserNavigation
|
||||
Log::debug(sprintf('Will put previous URI in cache under key %s: %s', $identifier, $url));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -120,4 +120,4 @@ class ChooseAccountHandler implements FinTSConfigurationInterface
|
||||
$this->accountRepository = app(AccountRepositoryInterface::class);
|
||||
$this->repository->setUser($importJob->user);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -50,4 +50,4 @@ interface FinTSConfigurationInterface
|
||||
* @param ImportJob $importJob
|
||||
*/
|
||||
public function setImportJob(ImportJob $importJob): void;
|
||||
}
|
||||
}
|
||||
|
@@ -107,4 +107,4 @@ class NewFinTSJobHandler implements FinTSConfigurationInterface
|
||||
$this->repository->setUser($importJob->user);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -255,4 +255,4 @@ class NewYnabJobHandler implements YnabJobConfigurationInterface
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -234,4 +234,4 @@ class SelectAccountsHandler implements YnabJobConfigurationInterface
|
||||
|
||||
return '';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -182,4 +182,4 @@ class SelectBudgetHandler implements YnabJobConfigurationInterface
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -69,4 +69,4 @@ interface YnabJobConfigurationInterface
|
||||
* @param ImportJob $importJob
|
||||
*/
|
||||
public function setImportJob(ImportJob $importJob): void;
|
||||
}
|
||||
}
|
||||
|
@@ -241,4 +241,4 @@ class PaymentConverter
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -117,4 +117,4 @@ class OFXProcessor implements FileProcessorInterface
|
||||
$this->repository->setUser($importJob->user);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -186,4 +186,4 @@ class StageImportDataHandler
|
||||
|
||||
return $storeData;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -77,4 +77,4 @@ class GetAccountsHandler
|
||||
$this->repository = app(ImportJobRepositoryInterface::class);
|
||||
$this->repository->setUser($importJob->user);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -275,4 +275,4 @@ class ImportDataHandler
|
||||
|
||||
return $request->transactions;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -105,4 +105,4 @@ class StageGetAccessHandler
|
||||
$this->repository = app(ImportJobRepositoryInterface::class);
|
||||
$this->repository->setUser($importJob->user);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -72,4 +72,4 @@ class StageGetBudgetsHandler
|
||||
$this->repository = app(ImportJobRepositoryInterface::class);
|
||||
$this->repository->setUser($importJob->user);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -52,4 +52,4 @@ class StageGetTransactionsHandler
|
||||
$this->repository = app(ImportJobRepositoryInterface::class);
|
||||
$this->repository->setUser($importJob->user);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -54,4 +54,4 @@ class StageMatchAccountsHandler
|
||||
$this->repository = app(ImportJobRepositoryInterface::class);
|
||||
$this->repository->setUser($importJob->user);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -206,4 +206,4 @@ class ConvertToDeposit implements ActionInterface
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -204,4 +204,4 @@ class ConvertToTransfer implements ActionInterface
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -209,4 +209,4 @@ class ConvertToWithdrawal implements ActionInterface
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -50,4 +50,4 @@ class AbstractTransformer extends TransformerAbstract
|
||||
{
|
||||
$this->parameters = $parameters;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -1,5 +1,27 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* adldap.php
|
||||
* Copyright (c) 2018 thegrumpydictator@gmail.com
|
||||
*
|
||||
* This file is part of Firefly III.
|
||||
*
|
||||
* Firefly III is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Firefly III is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
use Adldap\Schemas\ActiveDirectory;
|
||||
use Adldap\Schemas\FreeIPA;
|
||||
use Adldap\Schemas\OpenLDAP;
|
||||
|
@@ -1,5 +1,27 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* adldap_auth.php
|
||||
* Copyright (c) 2018 thegrumpydictator@gmail.com
|
||||
*
|
||||
* This file is part of Firefly III.
|
||||
*
|
||||
* Firefly III is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Firefly III is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
use Adldap\Laravel\Scopes\UidScope;
|
||||
use Adldap\Laravel\Scopes\UpnScope;
|
||||
|
||||
|
@@ -37,4 +37,4 @@ $factory->define(
|
||||
'active' => true,
|
||||
];
|
||||
}
|
||||
);
|
||||
);
|
||||
|
@@ -1,4 +1,26 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* UserFactory.php
|
||||
* Copyright (c) 2018 thegrumpydictator@gmail.com
|
||||
*
|
||||
* This file is part of Firefly III.
|
||||
*
|
||||
* Firefly III is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Firefly III is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
/**
|
||||
* UserFactory.php
|
||||
* Copyright (c) 2018 thegrumpydictator@gmail.com
|
||||
|
@@ -1,4 +1,25 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* 2018_06_08_200526_changes_for_v475.php
|
||||
* Copyright (c) 2018 thegrumpydictator@gmail.com
|
||||
*
|
||||
* This file is part of Firefly III.
|
||||
*
|
||||
* Firefly III is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Firefly III is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
|
@@ -1,5 +1,27 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* 2018_09_05_195147_changes_for_v477.php
|
||||
* Copyright (c) 2018 thegrumpydictator@gmail.com
|
||||
*
|
||||
* This file is part of Firefly III.
|
||||
*
|
||||
* Firefly III is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Firefly III is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
|
||||
|
@@ -1,4 +1,26 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* 2018_11_06_172532_changes_for_v479.php
|
||||
* Copyright (c) 2018 thegrumpydictator@gmail.com
|
||||
*
|
||||
* This file is part of Firefly III.
|
||||
*
|
||||
* Firefly III is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Firefly III is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
|
||||
|
@@ -1,4 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ browserconfig.xml
|
||||
~ Copyright (c) 2018 thegrumpydictator@gmail.com
|
||||
~
|
||||
~ This file is part of Firefly III.
|
||||
~
|
||||
~ Firefly III is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 3 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Firefly III is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<browserconfig>
|
||||
<msapplication>
|
||||
<tile>
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
/**
|
||||
* api.php
|
||||
* Copyright (c) 2017 thegrumpydictator@gmail.com
|
||||
@@ -334,4 +335,4 @@ Route::group(
|
||||
Route::put('{user}', ['uses' => 'UserController@update', 'as' => 'update']);
|
||||
Route::delete('{user}', ['uses' => 'UserController@delete', 'as' => 'delete']);
|
||||
}
|
||||
);
|
||||
);
|
||||
|
@@ -1135,4 +1135,4 @@ try {
|
||||
}
|
||||
);
|
||||
} catch (DuplicateBreadcrumbException $e) {
|
||||
}
|
||||
}
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
/**
|
||||
* channels.php
|
||||
* Copyright (c) 2017 thegrumpydictator@gmail.com
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
/**
|
||||
* console.php
|
||||
* Copyright (c) 2017 thegrumpydictator@gmail.com
|
||||
|
0
routes/web.php
Executable file → Normal file
0
routes/web.php
Executable file → Normal file
@@ -132,4 +132,4 @@ class ImportControllerTest extends TestCase
|
||||
$response->assertHeader('Content-Type', 'application/vnd.api+json');
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -302,4 +302,4 @@ class PiggyBankControllerTest extends TestCase
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -163,4 +163,4 @@ class PreferencesControllerTest extends TestCase
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -374,4 +374,4 @@ class RuleControllerTest extends TestCase
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -317,4 +317,4 @@ class RuleGroupControllerTest extends TestCase
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -276,4 +276,4 @@ class TagControllerTest extends TestCase
|
||||
$response->assertStatus(200);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -104,4 +104,4 @@ class CallbackControllerTest extends TestCase
|
||||
$response->assertStatus(200);
|
||||
$response->assertSee('You Need A Budget did not reply with a valid authorization code. Firefly III cannot continue.');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -361,4 +361,4 @@ class RecurrenceControllerTest extends TestCase
|
||||
|
||||
$response->assertExactJson($expected);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -468,4 +468,4 @@ class CreateControllerTest extends TestCase
|
||||
$response->assertStatus(302);
|
||||
$response->assertSessionHas('success');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -80,4 +80,4 @@ class DeleteControllerTest extends TestCase
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -146,4 +146,4 @@ class EditControllerTest extends TestCase
|
||||
$response->assertSessionHas('success');
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -126,4 +126,4 @@ class IndexControllerTest extends TestCase
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -114,4 +114,4 @@ class CronControllerTest extends TestCase
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -118,4 +118,4 @@ class AccountMetaFactoryTest extends TestCase
|
||||
$this->assertEquals($result->account_id, $account->id);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -68,4 +68,4 @@ class AttachmentFactoryTest extends TestCase
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -549,4 +549,4 @@ class RecurrenceFactoryTest extends TestCase
|
||||
$this->assertNull($result);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -59,4 +59,4 @@ class TransactionTypeFactoryTest extends TestCase
|
||||
$this->assertEquals($result->id, $type->id);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -195,4 +195,4 @@ class ChartJsGeneratorTest extends TestCase
|
||||
$this->assertEquals(1.0, $result['datasets'][0]['data'][0]);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -227,4 +227,4 @@ class MonthReportGeneratorTest extends TestCase
|
||||
$this->assertEquals('100', $result['endBalance']);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -73,4 +73,4 @@ class APIEventHandlerTest extends TestCase
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -77,4 +77,4 @@ class AutomationHandlerTest extends TestCase
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -77,4 +77,4 @@ class StoredJournalEventHandlerTest extends TestCase
|
||||
$this->assertTrue(false, $e->getMessage());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -75,4 +75,4 @@ class UpdatedJournalEventHandlerTest extends TestCase
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -66,4 +66,4 @@ class AmountFilterTest extends TestCase
|
||||
$result = $filter->filter($collection);
|
||||
$this->assertCount($count, $result);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user