Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
15 | public function testInitIdentifierFromDB() |
||
16 | { |
||
17 | $client = new Client(); |
||
18 | self::assertGreaterThan('10', strlen($client->getIdentifier())); |
||
19 | |||
20 | $client->writeData(['id' => 9, 'identifier' => '']); |
||
21 | self::assertEmpty($client->getIdentifier()); |
||
22 | |||
23 | $client->writeData(['id' => 9, 'identifier' => '9999']); |
||
24 | self::assertSame('9999', $client->getIdentifier()); |
||
25 | } |
||
43 |
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.