The method run() does not exist on TBolier\RethinkQL\Query\...on\AggregationInterface. It seems like you code against a sub-type of said class. However, the method does not exist in TBolier\RethinkQL\Query\...tion\OperationInterface or TBolier\RethinkQL\Query\TableInterface. Are you sure you never get one of those?
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
27
->/** @scrutinizer ignore-call */ run();
Loading history...
28
29
$this->assertCount(2, $cursor);
30
}
31
32
// /**
33
// * @return void
34
// * @throws \Exception
35
// */
36
// public function testFilterAndLimit(): void
37
// {
38
// $this->insertDocument(1);
39
// $this->insertDocument(2);
40
// $this->insertDocument(3);
41
// $this->insertDocument(4);
42
// $this->insertDocument(5);
43
//
44
// /** @var Cursor $cursor */
45
// $cursor = $this->r()
46
// ->table('tabletest')
47
// ->filter(['description' => 'A document description.'])