Remove void for php7.0

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
pull/16326/head
Daniel Kesselberg 2019-07-10 12:47:39 +07:00
parent c876b3c77b
commit 46d349ce2a
No known key found for this signature in database
GPG Key ID: 36E3664E099D0614
1 changed files with 1 additions and 1 deletions

@ -823,7 +823,7 @@ class LostControllerTest extends \Test\TestCase {
* @param bool $userEnabled1
* @param bool $userEnabled2
*/
public function testTwoUsersWithSameEmailOneDisabled(bool $userEnabled1, bool $userEnabled2): void {
public function testTwoUsersWithSameEmailOneDisabled(bool $userEnabled1, bool $userEnabled2) {
$user1 = $this->createMock(IUser::class);
$user1->method('getEMailAddress')
->willReturn('test@example.com');