Skip to content

Commit

Permalink
BUGFIX: Remove type hint because it is nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
Bastian Heist committed May 22, 2019
1 parent e2987b0 commit b869195
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Classes/Domain/Model/Content.php
Original file line number Diff line number Diff line change
Expand Up @@ -481,15 +481,15 @@ public function setLibrary(Library $library)
/**
* @return Account
*/
public function getAccount(): Account
public function getAccount()
{
return $this->account;
}

/**
* @param Account $account
*/
public function setAccount(Account $account)
public function setAccount($account)
{
$this->account = $account;
}
Expand Down

0 comments on commit b869195

Please sign in to comment.