@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | { |
| 21 | 21 | $mock = $this->getMockedUserQuery(); |
| 22 | 22 | $mock->expects($this->exactly(4)) |
| 23 | - ->method('filterByName'); |
|
| 23 | + ->method('filterByName'); |
|
| 24 | 24 | |
| 25 | 25 | $ignoredUsers = [ |
| 26 | 26 | 'foo', |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | { |
| 40 | 40 | $mock = $this->getMockedUserQuery(); |
| 41 | 41 | $mock->expects($this->once()) |
| 42 | - ->method('filterByName'); |
|
| 42 | + ->method('filterByName'); |
|
| 43 | 43 | |
| 44 | 44 | $mock->filterIgnoredUsers([]); |
| 45 | 45 | } |
@@ -51,8 +51,8 @@ discard block |
||
| 51 | 51 | private function getMockedUserQuery() |
| 52 | 52 | { |
| 53 | 53 | return $this->getMockBuilder(UserQuery::class) |
| 54 | - ->setMethods(['filterByName']) |
|
| 55 | - ->getMock(); |
|
| 54 | + ->setMethods(['filterByName']) |
|
| 55 | + ->getMock(); |
|
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | } |