Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
37 | public function testIssue() : void |
||
38 | { |
||
39 | $person = new GH6884Person(); |
||
40 | $person2 = new GH6884Person(); |
||
41 | |||
42 | $this->em->persist($person); |
||
43 | $this->em->persist($person2); |
||
44 | $this->em->flush(); |
||
45 | |||
46 | $person->isAlive = true; |
||
47 | $person2->isAlive = true; |
||
48 | |||
49 | $this->em->flush(); |
||
50 | } |
||
78 |
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.