| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 48 | public function testIndexList() |
||
| 49 | { |
||
| 50 | $this->insertDocument(1); |
||
| 51 | |||
| 52 | $this->r() |
||
| 53 | ->table('tabletest') |
||
| 54 | ->indexCreate('title') |
||
| 55 | ->run(); |
||
| 56 | |||
| 57 | /** @var ResponseInterface $res */ |
||
| 58 | $res = $this->r() |
||
| 59 | ->table('tabletest') |
||
| 60 | ->indexList() |
||
| 61 | ->run(); |
||
| 62 | |||
| 63 | $this->assertEquals('title', $res->getData()[0]); |
||
| 64 | } |
||
| 93 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.