79325420

Date: 2025-01-03 03:18:12
Score: 1
Natty:
Report link

In my case, my colleagues had overwritten the getParent() method in this way:

    public function getParent()
    {
        return new Cliente();
    }

After changing to this, the error dissapearead:

    public function getParent()
    {
        return Cliente::class;
    }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: cluisalvarado