I have this statement:
return ++$maxContratNum;
SonarQube display this message:
Extract this increment or decrement operator into a dedicated statement
what's meaning this message ??
Thank you
I have this statement:
return ++$maxContratNum;
SonarQube display this message:
Extract this increment or decrement operator into a dedicated statement
what's meaning this message ??
Thank you
Copyright © 2021 Jogjafile Inc.
The message is trying to tell you to write like this:
Written this way, it's perfectly clear that the value of
$maxContratNum
is incremented, and the function returns that incremented value.If you write
return ++$maxContratNum;
, that may be confusing to some readers.