Completed
Push — master ( 6e7141...c85fa9 )
by Sam
02:48
created
tests/cli/Database/UserQueryTest.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,12 +20,12 @@
 block discarded – undo
20 20
 	{
21 21
 		/* @var \PHPUnit_Framework_MockObject_MockObject|UserQuery $mock */
22 22
 		$mock = $this->getMockBuilder(UserQuery::class)
23
-		             ->setMethods(['filterByName'])
24
-		             ->getMock();
23
+					 ->setMethods(['filterByName'])
24
+					 ->getMock();
25 25
 
26 26
 		// There should be four filter calls for three passed names, since the DVR user is added transparently
27 27
 		$mock->expects($this->exactly(4))
28
-		     ->method('filterByName');
28
+			 ->method('filterByName');
29 29
 
30 30
 		$ignoredUsers = [
31 31
 			'foo',
Please login to merge, or discard this patch.
src/cli/Manager/StatisticsManager.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -127,8 +127,8 @@
 block discarded – undo
127 127
 		$ignoredUsers = $this->configuration->getInstanceByName($instanceName)->getIgnoredUsers();
128 128
 
129 129
 		return UserQuery::create()
130
-		                ->filterIgnoredUsers($ignoredUsers)
131
-		                ->findByInstanceName($instanceName)->getArrayCopy();
130
+						->filterIgnoredUsers($ignoredUsers)
131
+						->findByInstanceName($instanceName)->getArrayCopy();
132 132
 	}
133 133
 
134 134
 }
Please login to merge, or discard this patch.