From 8707bc661232a87a56988c596d1e09f128e49801 Mon Sep 17 00:00:00 2001 From: James Cole Date: Wed, 8 Nov 2017 09:05:10 +0100 Subject: [PATCH] Code cleanup. --- app/Console/Commands/VerifiesAccessToken.php | 2 +- app/Events/UserChangedEmail.php | 2 +- app/Handlers/Events/AdminEventHandler.php | 2 +- app/Http/Controllers/Json/BoxController.php | 2 +- app/Http/Controllers/Json/FrontpageController.php | 2 +- app/Http/Controllers/Json/TransactionController.php | 2 +- app/Http/Middleware/StartFireflySession.php | 2 +- app/Mail/AdminTestMail.php | 2 ++ app/Mail/ConfirmEmailChangeMail.php | 2 ++ app/Mail/UndoEmailChangeMail.php | 2 ++ app/Providers/SessionServiceProvider.php | 2 +- app/Support/Twig/Extension/Transaction.php | 2 +- app/Support/Twig/Extension/TransactionJournal.php | 2 +- app/Support/Twig/Loader/TransactionJournalLoader.php | 2 +- app/Support/Twig/Loader/TransactionLoader.php | 2 +- database/migrations/2017_11_04_170844_changes_for_v470a.php | 2 ++ resources/lang/en_US/bank.php | 4 +++- resources/views/bills/index.twig | 2 +- resources/views/debug.twig | 2 +- resources/views/form/location.twig | 2 +- resources/views/json/piggy-banks.twig | 2 +- resources/views/partials/transaction-row.twig | 2 +- tests/Unit/Import/Converter/AmountTest.php | 2 +- tests/Unit/TransactionRules/Actions/AddTagTest.php | 2 +- tests/Unit/TransactionRules/Actions/AppendDescriptionTest.php | 2 +- tests/Unit/TransactionRules/Actions/AppendNotesTest.php | 2 +- tests/Unit/TransactionRules/Actions/ClearBudgetTest.php | 2 +- tests/Unit/TransactionRules/Actions/ClearCategoryTest.php | 2 +- tests/Unit/TransactionRules/Actions/ClearNotesTest.php | 2 +- .../Unit/TransactionRules/Actions/PrependDescriptionTest.php | 2 +- tests/Unit/TransactionRules/Actions/PrependNotesTest.php | 2 +- tests/Unit/TransactionRules/Actions/RemoveAllTagsTest.php | 2 +- tests/Unit/TransactionRules/Actions/RemoveTagTest.php | 2 +- tests/Unit/TransactionRules/Actions/SetBudgetTest.php | 2 +- tests/Unit/TransactionRules/Actions/SetCategoryTest.php | 2 +- tests/Unit/TransactionRules/Actions/SetDescriptionTest.php | 2 +- .../TransactionRules/Actions/SetDestinationAccountTest.php | 2 +- tests/Unit/TransactionRules/Actions/SetNotesTest.php | 2 +- tests/Unit/TransactionRules/Actions/SetSourceAccountTest.php | 2 +- tests/Unit/TransactionRules/Triggers/AmountExactlyTest.php | 2 +- tests/Unit/TransactionRules/Triggers/AmountLessTest.php | 2 +- tests/Unit/TransactionRules/Triggers/AmountMoreTest.php | 2 +- tests/Unit/TransactionRules/Triggers/BudgetIsTest.php | 2 +- tests/Unit/TransactionRules/Triggers/CategoryIsTest.php | 2 +- .../TransactionRules/Triggers/DescriptionContainsTest.php | 2 +- tests/Unit/TransactionRules/Triggers/DescriptionEndsTest.php | 2 +- tests/Unit/TransactionRules/Triggers/DescriptionIsTest.php | 2 +- .../Unit/TransactionRules/Triggers/DescriptionStartsTest.php | 2 +- .../TransactionRules/Triggers/FromAccountContainsTest.php | 2 +- tests/Unit/TransactionRules/Triggers/FromAccountEndsTest.php | 2 +- tests/Unit/TransactionRules/Triggers/FromAccountIsTest.php | 2 +- .../Unit/TransactionRules/Triggers/FromAccountStartsTest.php | 2 +- tests/Unit/TransactionRules/Triggers/HasAnyBudgetTest.php | 2 +- tests/Unit/TransactionRules/Triggers/HasAnyCategoryTest.php | 2 +- tests/Unit/TransactionRules/Triggers/HasAnyTagTest.php | 2 +- tests/Unit/TransactionRules/Triggers/HasAttachmentTest.php | 2 +- tests/Unit/TransactionRules/Triggers/HasNoBudgetTest.php | 2 +- tests/Unit/TransactionRules/Triggers/HasNoCategoryTest.php | 2 +- tests/Unit/TransactionRules/Triggers/HasNoTagTest.php | 2 +- tests/Unit/TransactionRules/Triggers/NotesAnyTest.php | 2 +- tests/Unit/TransactionRules/Triggers/NotesAreTest.php | 2 +- tests/Unit/TransactionRules/Triggers/NotesContainTest.php | 2 +- tests/Unit/TransactionRules/Triggers/NotesEmptyTest.php | 2 +- tests/Unit/TransactionRules/Triggers/NotesEndTest.php | 2 +- tests/Unit/TransactionRules/Triggers/NotesStartTest.php | 2 +- tests/Unit/TransactionRules/Triggers/TagIsTest.php | 2 +- .../Unit/TransactionRules/Triggers/ToAccountContainsTest.php | 2 +- tests/Unit/TransactionRules/Triggers/ToAccountEndsTest.php | 2 +- tests/Unit/TransactionRules/Triggers/ToAccountIsTest.php | 2 +- tests/Unit/TransactionRules/Triggers/ToAccountStartsTest.php | 2 +- tests/Unit/TransactionRules/Triggers/TransactionTypeTest.php | 2 +- 71 files changed, 77 insertions(+), 67 deletions(-) diff --git a/app/Console/Commands/VerifiesAccessToken.php b/app/Console/Commands/VerifiesAccessToken.php index 165ead1d61..c2d62bd594 100644 --- a/app/Console/Commands/VerifiesAccessToken.php +++ b/app/Console/Commands/VerifiesAccessToken.php @@ -78,4 +78,4 @@ trait VerifiesAccessToken return true; } -} \ No newline at end of file +} diff --git a/app/Events/UserChangedEmail.php b/app/Events/UserChangedEmail.php index f86876fa57..d858c903b4 100644 --- a/app/Events/UserChangedEmail.php +++ b/app/Events/UserChangedEmail.php @@ -59,4 +59,4 @@ class UserChangedEmail extends Event $this->oldEmail = $oldEmail; $this->newEmail = $newEmail; } -} \ No newline at end of file +} diff --git a/app/Handlers/Events/AdminEventHandler.php b/app/Handlers/Events/AdminEventHandler.php index 6561a9ce05..5d4d35fca1 100644 --- a/app/Handlers/Events/AdminEventHandler.php +++ b/app/Handlers/Events/AdminEventHandler.php @@ -64,4 +64,4 @@ class AdminEventHandler // @codeCoverageIgnoreEnd return true; } -} \ No newline at end of file +} diff --git a/app/Http/Controllers/Json/BoxController.php b/app/Http/Controllers/Json/BoxController.php index 7b9bcb60a6..545ba93955 100644 --- a/app/Http/Controllers/Json/BoxController.php +++ b/app/Http/Controllers/Json/BoxController.php @@ -215,4 +215,4 @@ class BoxController extends Controller return Response::json($return); } -} \ No newline at end of file +} diff --git a/app/Http/Controllers/Json/FrontpageController.php b/app/Http/Controllers/Json/FrontpageController.php index f82d6aacb7..a062b5d394 100644 --- a/app/Http/Controllers/Json/FrontpageController.php +++ b/app/Http/Controllers/Json/FrontpageController.php @@ -71,4 +71,4 @@ class FrontpageController extends Controller return Response::json(['html' => $html]); } -} \ No newline at end of file +} diff --git a/app/Http/Controllers/Json/TransactionController.php b/app/Http/Controllers/Json/TransactionController.php index 707c2a20ef..efa08e43d0 100644 --- a/app/Http/Controllers/Json/TransactionController.php +++ b/app/Http/Controllers/Json/TransactionController.php @@ -90,4 +90,4 @@ class TransactionController extends Controller return Response::json($result); } -} \ No newline at end of file +} diff --git a/app/Http/Middleware/StartFireflySession.php b/app/Http/Middleware/StartFireflySession.php index 2ad495e6d7..3183e0a035 100644 --- a/app/Http/Middleware/StartFireflySession.php +++ b/app/Http/Middleware/StartFireflySession.php @@ -64,4 +64,4 @@ class StartFireflySession extends StartSession $session->setPreviousUrl($uri); } } -} \ No newline at end of file +} diff --git a/app/Mail/AdminTestMail.php b/app/Mail/AdminTestMail.php index a83047fa22..20ffc93d85 100644 --- a/app/Mail/AdminTestMail.php +++ b/app/Mail/AdminTestMail.php @@ -1,4 +1,6 @@ app->singleton(StartFireflySession::class); } -} \ No newline at end of file +} diff --git a/app/Support/Twig/Extension/Transaction.php b/app/Support/Twig/Extension/Transaction.php index 41bdd9ff01..c3dcb73855 100644 --- a/app/Support/Twig/Extension/Transaction.php +++ b/app/Support/Twig/Extension/Transaction.php @@ -509,4 +509,4 @@ class Transaction extends Twig_Extension return $txt; } -} \ No newline at end of file +} diff --git a/app/Support/Twig/Extension/TransactionJournal.php b/app/Support/Twig/Extension/TransactionJournal.php index c8e748701f..0b0d78f384 100644 --- a/app/Support/Twig/Extension/TransactionJournal.php +++ b/app/Support/Twig/Extension/TransactionJournal.php @@ -89,4 +89,4 @@ class TransactionJournal extends Twig_Extension } -} \ No newline at end of file +} diff --git a/app/Support/Twig/Loader/TransactionJournalLoader.php b/app/Support/Twig/Loader/TransactionJournalLoader.php index c1e6f06e85..a12e6b0763 100644 --- a/app/Support/Twig/Loader/TransactionJournalLoader.php +++ b/app/Support/Twig/Loader/TransactionJournalLoader.php @@ -54,4 +54,4 @@ class TransactionJournalLoader implements Twig_RuntimeLoaderInterface return null; } -} \ No newline at end of file +} diff --git a/app/Support/Twig/Loader/TransactionLoader.php b/app/Support/Twig/Loader/TransactionLoader.php index 67f00dfb9e..002c4e70da 100644 --- a/app/Support/Twig/Loader/TransactionLoader.php +++ b/app/Support/Twig/Loader/TransactionLoader.php @@ -54,4 +54,4 @@ class TransactionLoader implements Twig_RuntimeLoaderInterface return null; } -} \ No newline at end of file +} diff --git a/database/migrations/2017_11_04_170844_changes_for_v470a.php b/database/migrations/2017_11_04_170844_changes_for_v470a.php index af94df3f41..166c17b9d5 100644 --- a/database/migrations/2017_11_04_170844_changes_for_v470a.php +++ b/database/migrations/2017_11_04_170844_changes_for_v470a.php @@ -1,4 +1,6 @@ 'Prerequisites for an import from bunq', 'bunq_prerequisites_text' => 'In order to import from bunq, you need to obtain an API key. You can do this through the app.', -]; \ No newline at end of file +]; diff --git a/resources/views/bills/index.twig b/resources/views/bills/index.twig index dcb8603898..0870429463 100644 --- a/resources/views/bills/index.twig +++ b/resources/views/bills/index.twig @@ -39,4 +39,4 @@ {% block scripts %} -{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/resources/views/debug.twig b/resources/views/debug.twig index a8e25552d1..e882c81488 100644 --- a/resources/views/debug.twig +++ b/resources/views/debug.twig @@ -44,4 +44,4 @@ Debug information generated at {{ now }} for Firefly III version **{{ FF_VERSION ``` - \ No newline at end of file + diff --git a/resources/views/form/location.twig b/resources/views/form/location.twig index 1f791a31a3..9b1328ac67 100644 --- a/resources/views/form/location.twig +++ b/resources/views/form/location.twig @@ -116,4 +116,4 @@ }); -{% endif %} \ No newline at end of file +{% endif %} diff --git a/resources/views/json/piggy-banks.twig b/resources/views/json/piggy-banks.twig index 71c9b93a5d..d8cc226c5e 100644 --- a/resources/views/json/piggy-banks.twig +++ b/resources/views/json/piggy-banks.twig @@ -14,4 +14,4 @@ {% endfor %} - \ No newline at end of file + diff --git a/resources/views/partials/transaction-row.twig b/resources/views/partials/transaction-row.twig index c0ad0619c5..d823971f9b 100644 --- a/resources/views/partials/transaction-row.twig +++ b/resources/views/partials/transaction-row.twig @@ -70,4 +70,4 @@ {% endif %} {% endif %} - \ No newline at end of file + diff --git a/tests/Unit/Import/Converter/AmountTest.php b/tests/Unit/Import/Converter/AmountTest.php index 74bc587168..3cc08e4a25 100644 --- a/tests/Unit/Import/Converter/AmountTest.php +++ b/tests/Unit/Import/Converter/AmountTest.php @@ -103,4 +103,4 @@ class AmountTest extends TestCase } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Actions/AddTagTest.php b/tests/Unit/TransactionRules/Actions/AddTagTest.php index 5b0ff6b831..efef89e0f9 100644 --- a/tests/Unit/TransactionRules/Actions/AddTagTest.php +++ b/tests/Unit/TransactionRules/Actions/AddTagTest.php @@ -67,4 +67,4 @@ class AddTagTest extends TestCase } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Actions/AppendDescriptionTest.php b/tests/Unit/TransactionRules/Actions/AppendDescriptionTest.php index 747d606587..bd8d0742be 100644 --- a/tests/Unit/TransactionRules/Actions/AppendDescriptionTest.php +++ b/tests/Unit/TransactionRules/Actions/AppendDescriptionTest.php @@ -51,4 +51,4 @@ class AppendDescriptionTest extends TestCase } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Actions/AppendNotesTest.php b/tests/Unit/TransactionRules/Actions/AppendNotesTest.php index 84b7425943..422700a136 100644 --- a/tests/Unit/TransactionRules/Actions/AppendNotesTest.php +++ b/tests/Unit/TransactionRules/Actions/AppendNotesTest.php @@ -92,4 +92,4 @@ class AppendNotesTest extends TestCase $this->assertEquals($toAppend, $newNote->text); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Actions/ClearBudgetTest.php b/tests/Unit/TransactionRules/Actions/ClearBudgetTest.php index cbc1c54825..43c280cfd7 100644 --- a/tests/Unit/TransactionRules/Actions/ClearBudgetTest.php +++ b/tests/Unit/TransactionRules/Actions/ClearBudgetTest.php @@ -59,4 +59,4 @@ class ClearBudgetTest extends TestCase $this->assertEquals(0, $journal->budgets()->count()); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Actions/ClearCategoryTest.php b/tests/Unit/TransactionRules/Actions/ClearCategoryTest.php index d19aabc658..ce73265513 100644 --- a/tests/Unit/TransactionRules/Actions/ClearCategoryTest.php +++ b/tests/Unit/TransactionRules/Actions/ClearCategoryTest.php @@ -57,4 +57,4 @@ class ClearCategoryTest extends TestCase $this->assertEquals(0, $journal->categories()->count()); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Actions/ClearNotesTest.php b/tests/Unit/TransactionRules/Actions/ClearNotesTest.php index a43b5fa8e8..a9a4d70cd1 100644 --- a/tests/Unit/TransactionRules/Actions/ClearNotesTest.php +++ b/tests/Unit/TransactionRules/Actions/ClearNotesTest.php @@ -65,4 +65,4 @@ class ClearNotesTest extends TestCase $this->assertEquals(0, $journal->notes()->count()); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Actions/PrependDescriptionTest.php b/tests/Unit/TransactionRules/Actions/PrependDescriptionTest.php index 14d3a8e0f1..f17d17a1f6 100644 --- a/tests/Unit/TransactionRules/Actions/PrependDescriptionTest.php +++ b/tests/Unit/TransactionRules/Actions/PrependDescriptionTest.php @@ -61,4 +61,4 @@ class PrependDescriptionTest extends TestCase $this->assertEquals($prepend.$description, $journal->description); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Actions/PrependNotesTest.php b/tests/Unit/TransactionRules/Actions/PrependNotesTest.php index 152b22af72..22fd94a7b3 100644 --- a/tests/Unit/TransactionRules/Actions/PrependNotesTest.php +++ b/tests/Unit/TransactionRules/Actions/PrependNotesTest.php @@ -92,4 +92,4 @@ class PrependNotesTest extends TestCase $this->assertEquals($toPrepend, $newNote->text); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Actions/RemoveAllTagsTest.php b/tests/Unit/TransactionRules/Actions/RemoveAllTagsTest.php index 61f0ea7424..049abaabcb 100644 --- a/tests/Unit/TransactionRules/Actions/RemoveAllTagsTest.php +++ b/tests/Unit/TransactionRules/Actions/RemoveAllTagsTest.php @@ -60,4 +60,4 @@ class RemoveAllTagsTest extends TestCase $this->assertEquals(0, $journal->tags()->count()); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Actions/RemoveTagTest.php b/tests/Unit/TransactionRules/Actions/RemoveTagTest.php index b45e6a3efa..de1674378c 100644 --- a/tests/Unit/TransactionRules/Actions/RemoveTagTest.php +++ b/tests/Unit/TransactionRules/Actions/RemoveTagTest.php @@ -88,4 +88,4 @@ class RemoveTagTest extends TestCase $this->assertTrue($result); $this->assertEquals($tags->count(), $journal->tags()->count()); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Actions/SetBudgetTest.php b/tests/Unit/TransactionRules/Actions/SetBudgetTest.php index cb74a2fea2..e18620b0aa 100644 --- a/tests/Unit/TransactionRules/Actions/SetBudgetTest.php +++ b/tests/Unit/TransactionRules/Actions/SetBudgetTest.php @@ -57,4 +57,4 @@ class SetBudgetTest extends TestCase $this->assertEquals(1, $journal->budgets()->count()); $this->assertEquals($budget->name, $journal->budgets()->first()->name); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Actions/SetCategoryTest.php b/tests/Unit/TransactionRules/Actions/SetCategoryTest.php index 89b7572fbf..db655a4896 100644 --- a/tests/Unit/TransactionRules/Actions/SetCategoryTest.php +++ b/tests/Unit/TransactionRules/Actions/SetCategoryTest.php @@ -56,4 +56,4 @@ class SetCategoryTest extends TestCase $this->assertEquals(1, $journal->categories()->count()); $this->assertEquals($category->name, $journal->categories()->first()->name); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Actions/SetDescriptionTest.php b/tests/Unit/TransactionRules/Actions/SetDescriptionTest.php index b0f3677fff..f51bed01f7 100644 --- a/tests/Unit/TransactionRules/Actions/SetDescriptionTest.php +++ b/tests/Unit/TransactionRules/Actions/SetDescriptionTest.php @@ -60,4 +60,4 @@ class SetDescriptionTest extends TestCase $this->assertEquals($newDescription, $journal->description); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Actions/SetDestinationAccountTest.php b/tests/Unit/TransactionRules/Actions/SetDestinationAccountTest.php index 8daf260beb..89084544e1 100644 --- a/tests/Unit/TransactionRules/Actions/SetDestinationAccountTest.php +++ b/tests/Unit/TransactionRules/Actions/SetDestinationAccountTest.php @@ -183,4 +183,4 @@ class SetDestinationAccountTest extends TestCase $this->assertFalse($result); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Actions/SetNotesTest.php b/tests/Unit/TransactionRules/Actions/SetNotesTest.php index 7467e19e85..22a5878e59 100644 --- a/tests/Unit/TransactionRules/Actions/SetNotesTest.php +++ b/tests/Unit/TransactionRules/Actions/SetNotesTest.php @@ -89,4 +89,4 @@ class SetNotesTest extends TestCase // assert result $this->assertEquals(1, $journal->notes()->count()); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Actions/SetSourceAccountTest.php b/tests/Unit/TransactionRules/Actions/SetSourceAccountTest.php index 984b94bc45..5aeb47ecf3 100644 --- a/tests/Unit/TransactionRules/Actions/SetSourceAccountTest.php +++ b/tests/Unit/TransactionRules/Actions/SetSourceAccountTest.php @@ -181,4 +181,4 @@ class SetSourceAccountTest extends TestCase $this->assertFalse($result); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/AmountExactlyTest.php b/tests/Unit/TransactionRules/Triggers/AmountExactlyTest.php index f2dff60098..99a350d3aa 100644 --- a/tests/Unit/TransactionRules/Triggers/AmountExactlyTest.php +++ b/tests/Unit/TransactionRules/Triggers/AmountExactlyTest.php @@ -80,4 +80,4 @@ class AmountExactlyTest extends TestCase } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/AmountLessTest.php b/tests/Unit/TransactionRules/Triggers/AmountLessTest.php index 2696b89c9c..533d73c5ac 100644 --- a/tests/Unit/TransactionRules/Triggers/AmountLessTest.php +++ b/tests/Unit/TransactionRules/Triggers/AmountLessTest.php @@ -92,4 +92,4 @@ class AmountLessTest extends TestCase } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/AmountMoreTest.php b/tests/Unit/TransactionRules/Triggers/AmountMoreTest.php index 73c77481e0..55673f2f75 100644 --- a/tests/Unit/TransactionRules/Triggers/AmountMoreTest.php +++ b/tests/Unit/TransactionRules/Triggers/AmountMoreTest.php @@ -102,4 +102,4 @@ class AmountMoreTest extends TestCase } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/BudgetIsTest.php b/tests/Unit/TransactionRules/Triggers/BudgetIsTest.php index 49231ac5fd..db67250d12 100644 --- a/tests/Unit/TransactionRules/Triggers/BudgetIsTest.php +++ b/tests/Unit/TransactionRules/Triggers/BudgetIsTest.php @@ -109,4 +109,4 @@ class BudgetIsTest extends TestCase $result = BudgetIs::willMatchEverything($value); $this->assertTrue($result); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/CategoryIsTest.php b/tests/Unit/TransactionRules/Triggers/CategoryIsTest.php index 5d7537b4a0..9d52e1529b 100644 --- a/tests/Unit/TransactionRules/Triggers/CategoryIsTest.php +++ b/tests/Unit/TransactionRules/Triggers/CategoryIsTest.php @@ -109,4 +109,4 @@ class CategoryIsTest extends TestCase $result = CategoryIs::willMatchEverything($value); $this->assertTrue($result); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/DescriptionContainsTest.php b/tests/Unit/TransactionRules/Triggers/DescriptionContainsTest.php index d16dcb660e..99bf22574b 100644 --- a/tests/Unit/TransactionRules/Triggers/DescriptionContainsTest.php +++ b/tests/Unit/TransactionRules/Triggers/DescriptionContainsTest.php @@ -125,4 +125,4 @@ class DescriptionContainsTest extends TestCase $result = DescriptionContains::willMatchEverything($value); $this->assertTrue($result); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/DescriptionEndsTest.php b/tests/Unit/TransactionRules/Triggers/DescriptionEndsTest.php index f35f15c449..994848e3ad 100644 --- a/tests/Unit/TransactionRules/Triggers/DescriptionEndsTest.php +++ b/tests/Unit/TransactionRules/Triggers/DescriptionEndsTest.php @@ -137,4 +137,4 @@ class DescriptionEndsTest extends TestCase $result = DescriptionEnds::willMatchEverything($value); $this->assertTrue($result); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/DescriptionIsTest.php b/tests/Unit/TransactionRules/Triggers/DescriptionIsTest.php index f792b25781..12b4255e6c 100644 --- a/tests/Unit/TransactionRules/Triggers/DescriptionIsTest.php +++ b/tests/Unit/TransactionRules/Triggers/DescriptionIsTest.php @@ -103,4 +103,4 @@ class DescriptionIsTest extends TestCase $result = DescriptionIs::willMatchEverything($value); $this->assertTrue($result); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/DescriptionStartsTest.php b/tests/Unit/TransactionRules/Triggers/DescriptionStartsTest.php index 3dd68af61b..aa0e3b3042 100644 --- a/tests/Unit/TransactionRules/Triggers/DescriptionStartsTest.php +++ b/tests/Unit/TransactionRules/Triggers/DescriptionStartsTest.php @@ -125,4 +125,4 @@ class DescriptionStartsTest extends TestCase $result = DescriptionStarts::willMatchEverything($value); $this->assertTrue($result); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/FromAccountContainsTest.php b/tests/Unit/TransactionRules/Triggers/FromAccountContainsTest.php index 9cdcf85484..a8c5a9f929 100644 --- a/tests/Unit/TransactionRules/Triggers/FromAccountContainsTest.php +++ b/tests/Unit/TransactionRules/Triggers/FromAccountContainsTest.php @@ -92,4 +92,4 @@ class FromAccountContainsTest extends TestCase } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/FromAccountEndsTest.php b/tests/Unit/TransactionRules/Triggers/FromAccountEndsTest.php index 0a0bcd616d..1a864cbed5 100644 --- a/tests/Unit/TransactionRules/Triggers/FromAccountEndsTest.php +++ b/tests/Unit/TransactionRules/Triggers/FromAccountEndsTest.php @@ -106,4 +106,4 @@ class FromAccountEndsTest extends TestCase } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/FromAccountIsTest.php b/tests/Unit/TransactionRules/Triggers/FromAccountIsTest.php index 2dfe5f0952..21b3317457 100644 --- a/tests/Unit/TransactionRules/Triggers/FromAccountIsTest.php +++ b/tests/Unit/TransactionRules/Triggers/FromAccountIsTest.php @@ -93,4 +93,4 @@ class FromAccountIsTest extends TestCase $this->assertTrue($result); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/FromAccountStartsTest.php b/tests/Unit/TransactionRules/Triggers/FromAccountStartsTest.php index 8855a129bf..68b49952da 100644 --- a/tests/Unit/TransactionRules/Triggers/FromAccountStartsTest.php +++ b/tests/Unit/TransactionRules/Triggers/FromAccountStartsTest.php @@ -106,4 +106,4 @@ class FromAccountStartsTest extends TestCase } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/HasAnyBudgetTest.php b/tests/Unit/TransactionRules/Triggers/HasAnyBudgetTest.php index 81bd7c4b7a..c9d6523624 100644 --- a/tests/Unit/TransactionRules/Triggers/HasAnyBudgetTest.php +++ b/tests/Unit/TransactionRules/Triggers/HasAnyBudgetTest.php @@ -96,4 +96,4 @@ class HasAnyBudgetTest extends TestCase $this->assertFalse($result); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/HasAnyCategoryTest.php b/tests/Unit/TransactionRules/Triggers/HasAnyCategoryTest.php index 4d56597541..510adcb94b 100644 --- a/tests/Unit/TransactionRules/Triggers/HasAnyCategoryTest.php +++ b/tests/Unit/TransactionRules/Triggers/HasAnyCategoryTest.php @@ -96,4 +96,4 @@ class HasAnyCategoryTest extends TestCase $this->assertFalse($result); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/HasAnyTagTest.php b/tests/Unit/TransactionRules/Triggers/HasAnyTagTest.php index 080f116c44..f9bfda041a 100644 --- a/tests/Unit/TransactionRules/Triggers/HasAnyTagTest.php +++ b/tests/Unit/TransactionRules/Triggers/HasAnyTagTest.php @@ -73,4 +73,4 @@ class HasAnyTagTest extends TestCase $this->assertFalse($result); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/HasAttachmentTest.php b/tests/Unit/TransactionRules/Triggers/HasAttachmentTest.php index 5d689cbc00..d7af365717 100644 --- a/tests/Unit/TransactionRules/Triggers/HasAttachmentTest.php +++ b/tests/Unit/TransactionRules/Triggers/HasAttachmentTest.php @@ -82,4 +82,4 @@ class HasAttachmentTest extends TestCase $this->assertTrue($result); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/HasNoBudgetTest.php b/tests/Unit/TransactionRules/Triggers/HasNoBudgetTest.php index ae86221d73..27a3634339 100644 --- a/tests/Unit/TransactionRules/Triggers/HasNoBudgetTest.php +++ b/tests/Unit/TransactionRules/Triggers/HasNoBudgetTest.php @@ -96,4 +96,4 @@ class HasNoBudgetTest extends TestCase $result = HasNoBudget::willMatchEverything($value); $this->assertFalse($result); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/HasNoCategoryTest.php b/tests/Unit/TransactionRules/Triggers/HasNoCategoryTest.php index a8c3767157..911c9384ab 100644 --- a/tests/Unit/TransactionRules/Triggers/HasNoCategoryTest.php +++ b/tests/Unit/TransactionRules/Triggers/HasNoCategoryTest.php @@ -96,4 +96,4 @@ class HasNoCategoryTest extends TestCase $result = HasNoCategory::willMatchEverything($value); $this->assertFalse($result); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/HasNoTagTest.php b/tests/Unit/TransactionRules/Triggers/HasNoTagTest.php index 0910a42d64..a50bb18351 100644 --- a/tests/Unit/TransactionRules/Triggers/HasNoTagTest.php +++ b/tests/Unit/TransactionRules/Triggers/HasNoTagTest.php @@ -76,4 +76,4 @@ class HasNoTagTest extends TestCase $result = HasNoTag::willMatchEverything($value); $this->assertFalse($result); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/NotesAnyTest.php b/tests/Unit/TransactionRules/Triggers/NotesAnyTest.php index def57d001b..eab98856ac 100644 --- a/tests/Unit/TransactionRules/Triggers/NotesAnyTest.php +++ b/tests/Unit/TransactionRules/Triggers/NotesAnyTest.php @@ -90,4 +90,4 @@ class NotesAnyTest extends TestCase $result = NotesAny::willMatchEverything($value); $this->assertFalse($result); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/NotesAreTest.php b/tests/Unit/TransactionRules/Triggers/NotesAreTest.php index d484d0e2ef..1a32d55599 100644 --- a/tests/Unit/TransactionRules/Triggers/NotesAreTest.php +++ b/tests/Unit/TransactionRules/Triggers/NotesAreTest.php @@ -117,4 +117,4 @@ class NotesAreTest extends TestCase $result = NotesAre::willMatchEverything($value); $this->assertTrue($result); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/NotesContainTest.php b/tests/Unit/TransactionRules/Triggers/NotesContainTest.php index 2de8bbc887..3e31ada8bd 100644 --- a/tests/Unit/TransactionRules/Triggers/NotesContainTest.php +++ b/tests/Unit/TransactionRules/Triggers/NotesContainTest.php @@ -143,4 +143,4 @@ class NotesContainTest extends TestCase $result = NotesContain::willMatchEverything($value); $this->assertTrue($result); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/NotesEmptyTest.php b/tests/Unit/TransactionRules/Triggers/NotesEmptyTest.php index 63a44a5ad8..545d7c0611 100644 --- a/tests/Unit/TransactionRules/Triggers/NotesEmptyTest.php +++ b/tests/Unit/TransactionRules/Triggers/NotesEmptyTest.php @@ -91,4 +91,4 @@ class NotesEmptyTest extends TestCase $this->assertFalse($result); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/NotesEndTest.php b/tests/Unit/TransactionRules/Triggers/NotesEndTest.php index ae05ad0105..bc68f57e6e 100644 --- a/tests/Unit/TransactionRules/Triggers/NotesEndTest.php +++ b/tests/Unit/TransactionRules/Triggers/NotesEndTest.php @@ -115,4 +115,4 @@ class NotesEndTest extends TestCase $result = NotesEnd::willMatchEverything($value); $this->assertTrue($result); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/NotesStartTest.php b/tests/Unit/TransactionRules/Triggers/NotesStartTest.php index 4e556c5c15..f062ca007b 100644 --- a/tests/Unit/TransactionRules/Triggers/NotesStartTest.php +++ b/tests/Unit/TransactionRules/Triggers/NotesStartTest.php @@ -115,4 +115,4 @@ class NotesStartTest extends TestCase $result = NotesStart::willMatchEverything($value); $this->assertTrue($result); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/TagIsTest.php b/tests/Unit/TransactionRules/Triggers/TagIsTest.php index 39d6ae09fd..901aece556 100644 --- a/tests/Unit/TransactionRules/Triggers/TagIsTest.php +++ b/tests/Unit/TransactionRules/Triggers/TagIsTest.php @@ -102,4 +102,4 @@ class TagIsTest extends TestCase $result = TagIs::willMatchEverything($value); $this->assertTrue($result); } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/ToAccountContainsTest.php b/tests/Unit/TransactionRules/Triggers/ToAccountContainsTest.php index 66cc14299d..e0eac1cfc3 100644 --- a/tests/Unit/TransactionRules/Triggers/ToAccountContainsTest.php +++ b/tests/Unit/TransactionRules/Triggers/ToAccountContainsTest.php @@ -90,4 +90,4 @@ class ToAccountContainsTest extends TestCase } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/ToAccountEndsTest.php b/tests/Unit/TransactionRules/Triggers/ToAccountEndsTest.php index ef7b0d6c44..2234ab9f2a 100644 --- a/tests/Unit/TransactionRules/Triggers/ToAccountEndsTest.php +++ b/tests/Unit/TransactionRules/Triggers/ToAccountEndsTest.php @@ -106,4 +106,4 @@ class ToAccountEndsTest extends TestCase } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/ToAccountIsTest.php b/tests/Unit/TransactionRules/Triggers/ToAccountIsTest.php index c2f3ad118c..2d7473f2bd 100644 --- a/tests/Unit/TransactionRules/Triggers/ToAccountIsTest.php +++ b/tests/Unit/TransactionRules/Triggers/ToAccountIsTest.php @@ -93,4 +93,4 @@ class ToAccountIsTest extends TestCase } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/ToAccountStartsTest.php b/tests/Unit/TransactionRules/Triggers/ToAccountStartsTest.php index cfcf028b8d..d8108e026f 100644 --- a/tests/Unit/TransactionRules/Triggers/ToAccountStartsTest.php +++ b/tests/Unit/TransactionRules/Triggers/ToAccountStartsTest.php @@ -106,4 +106,4 @@ class ToAccountStartsTest extends TestCase } -} \ No newline at end of file +} diff --git a/tests/Unit/TransactionRules/Triggers/TransactionTypeTest.php b/tests/Unit/TransactionRules/Triggers/TransactionTypeTest.php index 0ed35ff2cd..8a8d271f3b 100644 --- a/tests/Unit/TransactionRules/Triggers/TransactionTypeTest.php +++ b/tests/Unit/TransactionRules/Triggers/TransactionTypeTest.php @@ -78,4 +78,4 @@ class TransactionTypeTest extends TestCase } -} \ No newline at end of file +}