Clean up code.

This commit is contained in:
James Cole
2023-02-12 07:23:57 +01:00
parent 927d607b1a
commit 789935cf1c
67 changed files with 154 additions and 156 deletions

View File

@@ -79,7 +79,7 @@ class CurrencyExchangeRate extends Model
protected $fillable = ['user_id', 'from_currency_id', 'to_currency_id', 'date', 'rate'];
/**
* @return BelongsTo
*/
public function fromCurrency(): BelongsTo
@@ -88,7 +88,7 @@ class CurrencyExchangeRate extends Model
}
/**
* @return BelongsTo
*/
public function toCurrency(): BelongsTo
@@ -97,7 +97,7 @@ class CurrencyExchangeRate extends Model
}
/**
* @return BelongsTo
*/
public function user(): BelongsTo