| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 49 | public function testGetNbResults() |
||
| 50 | { |
||
| 51 | $this->query |
||
| 52 | ->expects($this->once()) |
||
| 53 | ->method('limit') |
||
| 54 | ->with(0); |
||
| 55 | $this->query |
||
| 56 | ->expects($this->once()) |
||
| 57 | ->method('offset') |
||
| 58 | ->with(0); |
||
| 59 | $this->query |
||
| 60 | ->expects($this->once()) |
||
| 61 | ->method('count') |
||
| 62 | ->will($this->returnValue(100)); |
||
| 63 | |||
| 64 | $this->assertSame(100, $this->adapter->getNbResults()); |
||
| 65 | } |
||
| 66 | |||
| 89 |
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: