Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | class IsEmptyTest extends AbstractTableTest |
||
9 | { |
||
10 | /** |
||
11 | * @throws \Exception |
||
12 | */ |
||
13 | public function testIsEmpty() |
||
14 | { |
||
15 | $res = $this->r() |
||
16 | ->table('tabletest') |
||
17 | ->isEmpty() |
||
18 | ->run(); |
||
19 | |||
20 | $this->assertTrue($res->getData()); |
||
|
|||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @throws \Exception |
||
25 | */ |
||
26 | public function testIsNotEmpty() |
||
36 | } |
||
37 | } |
||
38 |
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.