@@ -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 | } |