Remove code coverage ignore instructions

This commit is contained in:
James Cole
2023-02-12 07:15:06 +01:00
parent ef6af34af9
commit 927d607b1a
457 changed files with 741 additions and 741 deletions

View File

@@ -99,7 +99,7 @@ class AccountCurrencies extends Command
* executed. This leads to noticeable slow-downs and class calls. To prevent this, this method should
* be called from the handle method instead of using the constructor to initialize the command.
*
* @codeCoverageIgnore
*/
private function stupidLaravel(): void
{

View File

@@ -117,7 +117,7 @@ class MigrateToGroups extends Command
* executed. This leads to noticeable slow-downs and class calls. To prevent this, this method should
* be called from the handle method instead of using the constructor to initialize the command.
*
* @codeCoverageIgnore
*/
private function stupidLaravel(): void
{

View File

@@ -108,7 +108,7 @@ class MigrateToRules extends Command
* executed. This leads to noticeable slow-downs and class calls. To prevent this, this method should
* be called from the handle method instead of using the constructor to initialize the command.
*
* @codeCoverageIgnore
*/
private function stupidLaravel(): void
{

View File

@@ -96,7 +96,7 @@ class OtherCurrenciesCorrections extends Command
* executed. This leads to noticeable slow-downs and class calls. To prevent this, this method should
* be called from the handle method instead of using the constructor to initialize the command.
*
* @codeCoverageIgnore
*/
private function stupidLaravel(): void
{

View File

@@ -111,7 +111,7 @@ class TransactionIdentifier extends Command
* executed. This leads to noticeable slow-downs and class calls. To prevent this, this method should
* be called from the handle method instead of using the constructor to initialize the command.
*
* @codeCoverageIgnore
*/
private function stupidLaravel(): void
{

View File

@@ -110,7 +110,7 @@ class TransferCurrenciesCorrections extends Command
* executed. This leads to noticeable slow-downs and class calls. To prevent this, this method should
* be called from the handle method instead of using the constructor to initialize the command.
*
* @codeCoverageIgnore
*/
private function stupidLaravel(): void
{
@@ -124,7 +124,7 @@ class TransferCurrenciesCorrections extends Command
/**
* Reset all the class fields for the current transfer.
*
* @codeCoverageIgnore
*/
private function resetInformation(): void
{
@@ -238,7 +238,7 @@ class TransferCurrenciesCorrections extends Command
* @param TransactionJournal $transfer
*
* @return bool
* @codeCoverageIgnore
*/
private function isSplitJournal(TransactionJournal $transfer): bool
{
@@ -250,7 +250,7 @@ class TransferCurrenciesCorrections extends Command
*
* @param TransactionJournal $journal
*
* @codeCoverageIgnore
*/
private function getSourceInformation(TransactionJournal $journal): void
{
@@ -263,7 +263,7 @@ class TransferCurrenciesCorrections extends Command
* @param TransactionJournal $transfer
*
* @return Transaction|null
* @codeCoverageIgnore
*/
private function getSourceTransaction(TransactionJournal $transfer): ?Transaction
{
@@ -300,7 +300,7 @@ class TransferCurrenciesCorrections extends Command
*
* @param TransactionJournal $journal
*
* @codeCoverageIgnore
*/
private function getDestinationInformation(TransactionJournal $journal): void
{
@@ -313,7 +313,7 @@ class TransferCurrenciesCorrections extends Command
* @param TransactionJournal $transfer
*
* @return Transaction|null
* @codeCoverageIgnore
*/
private function getDestinationTransaction(TransactionJournal $transfer): ?Transaction
{
@@ -324,7 +324,7 @@ class TransferCurrenciesCorrections extends Command
* Is either the source or destination transaction NULL?
*
* @return bool
* @codeCoverageIgnore
*/
private function isEmptyTransactions(): bool
{
@@ -335,7 +335,7 @@ class TransferCurrenciesCorrections extends Command
/**
* @return bool
* @codeCoverageIgnore
*/
private function isNoCurrencyPresent(): bool
{

View File

@@ -31,7 +31,7 @@ use Illuminate\Console\Command;
/**
* Class UpgradeDatabase
*
* @codeCoverageIgnore
*/
class UpgradeDatabase extends Command
{