Fix some code quality issues

This commit is contained in:
James Cole
2023-02-12 08:07:08 +01:00
parent 1fd455dbab
commit 2ad2d53f88
6 changed files with 4 additions and 19 deletions

View File

@@ -36,9 +36,6 @@ use stdClass;
*/
class JournalCLIRepository implements JournalCLIRepositoryInterface
{
/** @var User */
private $user;
/**
* Get all transaction journals with a specific type, regardless of user.
*
@@ -234,6 +231,6 @@ class JournalCLIRepository implements JournalCLIRepositoryInterface
*/
public function setUser(User $user): void
{
$this->user = $user;
return;
}
}