This check looks for while loops that have no statements or where all statements
have been commented out. This may be the result of changes for debugging or the code
may simply be obsolete.
Consider removing the loop.
Loading history...
30
// drop all accumulated error messages if any
31
}
32
6
}
33
34
/**
35
* @return null|string
36
*/
37
1
protected function getErrorMessage()
38
{
39
1
$message = null;
40
1
while (($errorLine = $this->openSslErrorString()) !== false) {
This check looks for
while
loops that have no statements or where all statements have been commented out. This may be the result of changes for debugging or the code may simply be obsolete.Consider removing the loop.