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

@@ -126,7 +126,7 @@ class Transaction extends Model
/**
* Get the account this object belongs to.
*
* @codeCoverageIgnore
* @return BelongsTo
*/
public function account(): BelongsTo
@@ -137,7 +137,7 @@ class Transaction extends Model
/**
* Get the budget(s) this object belongs to.
*
* @codeCoverageIgnore
* @return BelongsToMany
*/
public function budgets(): BelongsToMany
@@ -148,7 +148,7 @@ class Transaction extends Model
/**
* Get the category(ies) this object belongs to.
*
* @codeCoverageIgnore
* @return BelongsToMany
*/
public function categories(): BelongsToMany
@@ -159,7 +159,7 @@ class Transaction extends Model
/**
* Get the currency this object belongs to.
*
* @codeCoverageIgnore
* @return BelongsTo
*/
public function foreignCurrency(): BelongsTo
@@ -170,7 +170,7 @@ class Transaction extends Model
/**
* Check for transactions AFTER a specified date.
*
* @codeCoverageIgnore
*
* @param Builder $query
* @param Carbon $date
@@ -190,7 +190,7 @@ class Transaction extends Model
* @param string $table
*
* @return bool
* @codeCoverageIgnore
*/
public static function isJoined(Builder $query, string $table): bool
{
@@ -210,7 +210,7 @@ class Transaction extends Model
/**
* Check for transactions BEFORE the specified date.
*
* @codeCoverageIgnore
*
* @param Builder $query
* @param Carbon $date
@@ -224,7 +224,7 @@ class Transaction extends Model
}
/**
* @codeCoverageIgnore
*
* @param Builder $query
* @param array $types
@@ -242,7 +242,7 @@ class Transaction extends Model
}
/**
* @codeCoverageIgnore
*
* @param mixed $value
*/
@@ -252,7 +252,7 @@ class Transaction extends Model
}
/**
* @codeCoverageIgnore
* @return BelongsTo
*/
public function transactionCurrency(): BelongsTo
@@ -261,7 +261,7 @@ class Transaction extends Model
}
/**
* @codeCoverageIgnore
* @return BelongsTo
*/
public function transactionJournal(): BelongsTo