Completed
Push — master ( c85fa9...d312aa )
by Sam
03:06
created
tests/cli/Database/UserQueryTest.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.