@@ -21,11 +21,11 @@ discard block |
||
| 21 | 21 | protected function setUp() : void { |
| 22 | 22 | parent::setUp(); |
| 23 | 23 | |
| 24 | - $this->store = $this->getMockBuilder( '\SMW\Store' ) |
|
| 24 | + $this->store = $this->getMockBuilder('\SMW\Store') |
|
| 25 | 25 | ->disableOriginalConstructor() |
| 26 | 26 | ->getMockForAbstractClass(); |
| 27 | 27 | |
| 28 | - $this->query = $this->getMockBuilder( '\SMWQuery' ) |
|
| 28 | + $this->query = $this->getMockBuilder('\SMWQuery') |
|
| 29 | 29 | ->disableOriginalConstructor() |
| 30 | 30 | ->getMock(); |
| 31 | 31 | } |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | |
| 35 | 35 | $this->assertInstanceOf( |
| 36 | 36 | CompoundQueryResult::class, |
| 37 | - new CompoundQueryResult( [], $this->query, [], $this->store ) |
|
| 37 | + new CompoundQueryResult([], $this->query, [], $this->store) |
|
| 38 | 38 | ); |
| 39 | 39 | } |
| 40 | 40 | |