chore: fix various small sonacloud issues to see if the actions run correctly.

This commit is contained in:
James Cole
2023-05-29 14:17:10 +02:00
parent 023a3fdade
commit 6ed5892cf9
5 changed files with 10 additions and 11 deletions

View File

@@ -212,7 +212,7 @@ class LinkTypeRepository implements LinkTypeRepositoryInterface
return $merged->filter(
function (TransactionJournalLink $link) {
return (null !== $link->source && null !== $link->destination);
return null !== $link->source && null !== $link->destination;
}
);
}