Showing 54 of 54 total issues
Function deleteSMS
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
function deleteSMS($userAccount, $passAccount, $deleteKey=0, $viewResult=1)
{
global $arrayDeleteSMS;
$stringToPost = "mobile=".$userAccount."&password=".$passAccount."&deleteKey=".$deleteKey;
$stringToPostLength = strlen($stringToPost);
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function forgetPassword
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
function forgetPassword($userAccount, $sendType, $viewResult=1)
{
global $arrayForgetPassword;
$stringToPost = "mobile=".$userAccount."&type=".$sendType;
$stringToPostLength = strlen($stringToPost);
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function sendSMSWK
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
function sendSMSWK($userAccount, $passAccount, $numbers, $sender, $msg, $msgKey, $MsgID, $timeSend=0, $dateSend=0, $deleteKey=0, $viewResult=1)
{
global $arraySendMsgWK;
$applicationType = "68";
$msg = $msg;
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function checkAlphasSender
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
function checkAlphasSender($userAccount, $passAccount, $viewResult=1)
{
global $arrayCheckAlphasSender;
$stringToPost = "mobile=".$userAccount."&password=".$passAccount;
$stringToPostLength = strlen($stringToPost);
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function addAlphaSender
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
function addAlphaSender($userAccount, $passAccount, $sender, $viewResult=1)
{
global $arrayAddAlphaSender;
$stringToPost = "mobile=".$userAccount."&password=".$passAccount."&sender=".$sender;
$stringToPostLength = strlen($stringToPost);
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function balanceSMS
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
function balanceSMS($userAccount, $passAccount, $viewResult=1)
{
global $arrayBalance;
$stringToPost = "mobile=".$userAccount."&password=".$passAccount;
$stringToPostLength = strlen($stringToPost);
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function activeSender
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
function activeSender($userAccount, $passAccount, $senderId, $activeKey, $viewResult=1)
{
global $arrayActiveSender;
$stringToPost = "mobile=".$userAccount."&password=".$passAccount."&senderId=".$senderId."&activeKey=".$activeKey;
$stringToPostLength = strlen($stringToPost);
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function checkSender
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
function checkSender($userAccount, $passAccount, $senderId, $viewResult=1)
{
global $arrayCheckSender;
$stringToPost = "mobile=".$userAccount."&password=".$passAccount."&senderId=".$senderId;
$stringToPostLength = strlen($stringToPost);
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Avoid too many return
statements within this method. Open
return $apiResult;
Avoid too many return
statements within this method. Open
return $arrayMsgs[0];
Avoid too many return
statements within this method. Open
return $apiResult;
Avoid too many return
statements within this method. Open
return $arrayMsgs[$apiResult];
Function http_build_multi_query
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public static function http_build_multi_query($data, $key = null)
{
$query = [];
if (empty($data)) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function senderNames
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
private function senderNames($serviceVars = [])
{
if (!isset($serviceVars['getAll'])) {
throw new \Exception('There is Some Missing Parameters for this Service, Please review the documentation ');
}
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"