The method run() does not exist on TBolier\RethinkQL\Query\...tion\OperationInterface. It seems like you code against a sub-type of said class. However, the method does not exist in 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
22
->/** @scrutinizer ignore-call */ run();
Loading history...
23
24
/** @var array $array */
25
$array = $res->getData();
26
27
$this->assertArraySubset(['id' => 1], $array);
28
}
29
30
/**
31
* @return void
32
* @throws \Exception
33
*/
34
public function testGetNonExistingDocument(): void