Add newline to files

This commit is contained in:
James Cole
2019-08-17 12:09:03 +02:00
parent b53cbbe469
commit fc78c32fca
153 changed files with 243 additions and 125 deletions

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* AccountCurrenciesTest.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -350,4 +351,4 @@ class AccountCurrenciesTest extends TestCase
->assertExitCode(0);
// nothing changed, so nothing to verify.
}
}
}

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* BackToJournalsTest.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -244,4 +245,4 @@ class BackToJournalsTest extends TestCase
}
}
}

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* BudgetLimitCurrencyTest.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -97,4 +98,4 @@ class BudgetLimitCurrencyTest extends TestCase
// assume currency is filled in.
$this->assertCount(1, BudgetLimit::where('id', $limit->id)->where('transaction_currency_id', 1)->get());
}
}
}

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* CCLiabilitiesTest.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -129,4 +130,4 @@ class CCLiabilitiesTest extends TestCase
$type->forceDelete();
}
}
}

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* MigrateAttachmentsTest.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -96,4 +97,4 @@ class MigrateAttachmentsTest extends TestCase
$attachment->forceDelete();
}
}
}

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* MigrateJournalNotesTest.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -98,4 +99,4 @@ class MigrateJournalNotesTest extends TestCase
}
}
}

View File

@@ -258,4 +258,4 @@ class MigrateToGroupsTest extends TestCase
// the calls above let me know it's OK.
}
}
}

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* MigrateToRulesTest.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -322,4 +323,4 @@ class MigrateToRulesTest extends TestCase
->assertExitCode(0);
}
}
}

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* OtherCurrenciesCorrectionsTest.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -270,4 +271,4 @@ class OtherCurrenciesCorrectionsTest extends TestCase
}
}
}

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* RenameAccountMetaTest.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -100,4 +101,4 @@ class RenameAccountMetaTest extends TestCase
$meta->forceDelete();
}
}
}

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* TransactionIdentifierTest.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -153,4 +154,4 @@ class TransactionIdentifierTest extends TestCase
}
}
}

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* TransferCurrenciesCorrectionsTest.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -561,4 +562,4 @@ class TransferCurrenciesCorrectionsTest extends TestCase
$this->assertCount(1, Transaction::where('id', $destination->id)->where('transaction_currency_id', $euro->id)->get());
}
}
}