It seems like you call parent on a different method (setUrlWsdl() instead of __construct()). Are you sure this is correct? If so, you might want to change this to $this->setUrlWsdl().
This check looks for a call to a parent method whose name is different than
the method from which it is called.
It seems like you call parent on a different method (getClient() instead of send()). Are you sure this is correct? If so, you might want to change this to $this->getClient().
This check looks for a call to a parent method whose name is different than
the method from which it is called.
56% of this comment could be valid code. Did you maybe forget this after debugging?
Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have
checked you do not need it.
The code might also have been commented out for debugging purposes. In this case it is vital that
someone uncomments it again or your project may behave in very unexpected ways in production.
This check looks for comments that seem to be mostly valid code and reports them.
60% of this comment could be valid code. Did you maybe forget this after debugging?
Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have
checked you do not need it.
The code might also have been commented out for debugging purposes. In this case it is vital that
someone uncomments it again or your project may behave in very unexpected ways in production.
This check looks for comments that seem to be mostly valid code and reports them.
This check looks for a call to a parent method whose name is different than the method from which it is called.
Consider the following code:
The
getFirstName()
method in theSon
calls the wrong method in the parent class.