@@ -22,12 +22,12 @@ |
||
22 | 22 | $mock = $this->getMockForTrait('\Jalle19\StatusManager\Database\LimitTrait'); |
23 | 23 | |
24 | 24 | $mock->expects($this->once()) |
25 | - ->method('limit'); |
|
25 | + ->method('limit'); |
|
26 | 26 | |
27 | 27 | $mock->filterByLimit(10); |
28 | 28 | |
29 | 29 | $mock->expects($this->never()) |
30 | - ->method('limit'); |
|
30 | + ->method('limit'); |
|
31 | 31 | |
32 | 32 | $mock->filterByLimit(null); |
33 | 33 | } |
@@ -22,11 +22,11 @@ |
||
22 | 22 | { |
23 | 23 | /* @var \PHPUnit_Framework_MockObject_MockObject|SubscriptionQuery $mock */ |
24 | 24 | $mock = $this->getMockBuilder(SubscriptionQuery::class) |
25 | - ->setMethods(['filterByStopped']) |
|
26 | - ->getMock(); |
|
25 | + ->setMethods(['filterByStopped']) |
|
26 | + ->getMock(); |
|
27 | 27 | |
28 | 28 | $mock->expects($expects) |
29 | - ->method('filterByStopped'); |
|
29 | + ->method('filterByStopped'); |
|
30 | 30 | |
31 | 31 | $mock->filterByTimeFrame(new TimeFrame($timeFrame)); |
32 | 32 | } |
@@ -127,8 +127,8 @@ |
||
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 | } |
@@ -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 | } |
@@ -45,8 +45,8 @@ |
||
45 | 45 | |
46 | 46 | // Create two clients and connect them |
47 | 47 | $this->_clientMock = $this->getMockBuilder(ConnectionInterface::class) |
48 | - ->setMethods(['send', 'close']) |
|
49 | - ->getMock(); |
|
48 | + ->setMethods(['send', 'close']) |
|
49 | + ->getMock(); |
|
50 | 50 | |
51 | 51 | $this->_anotherClientMock = clone $this->_clientMock; |
52 | 52 |