update meta files for 602

This commit is contained in:
James Cole
2023-03-11 08:31:27 +01:00
parent ae373a15c5
commit 8d3170785e
47 changed files with 203 additions and 134 deletions

View File

@@ -270,10 +270,10 @@ class AccountValidator
*/
public function setDestination(?Account $account): void
{
if(null === $account) {
if (null === $account) {
Log::debug('AccountValidator destination is set to NULL');
}
if(null !== $account) {
if (null !== $account) {
Log::debug(sprintf('AccountValidator destination is set to #%d: "%s" (%s)', $account->id, $account->name, $account?->accountType->type));
}
$this->destination = $account;
@@ -284,14 +284,12 @@ class AccountValidator
*/
public function setSource(?Account $account): void
{
if(null === $account) {
if (null === $account) {
Log::debug('AccountValidator source is set to NULL');
}
if(null !== $account) {
if (null !== $account) {
Log::debug(sprintf('AccountValidator source is set to #%d: "%s" (%s)', $account->id, $account->name, $account?->accountType->type));
}
$this->source = $account;
}
}