Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The left-associativity of the ternary operator has been deprecated in… #1343

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
The left-associativity of the ternary operator has been deprecated in…
… PHP 7.4. Multiple consecutive ternaries detected. Use parenthesis to clarify the order in which the operations should be executed!

FILE: classes/DevicePorts.class.php
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
 185 | WARNING | The left-associativity of the ternary operator has been deprecated in PHP 7.4. Multiple consecutive ternaries detected. Use parenthesis to clarify the order in which the operations
     |         | should be executed
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  • Loading branch information
spezialist1 authored Sep 16, 2022
commit a824f504a297bd2d2ed87d1a3c769eeb3c1aae9b
2 changes: 1 addition & 1 deletion classes/DevicePorts.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ static function createPorts($DeviceID,$update_existing=false){
}
}
// pull port name first from snmp then from template then just call it port x
$portList[$i]->Label=(isset($nameList[$n]))?$nameList[$n]:(isset($tports[$i]) && $tports[$i]->Label)?$tports[$i]->Label:__("Port").$i;
$portList[$i]->Label=(isset($nameList[$n]))?$nameList[$n]:((isset($tports[$i]) && $tports[$i]->Label)?$tports[$i]->Label:__("Port").$i);
$portList[$i]->Notes=(isset($aliasList[$n]))?$aliasList[$n]:'';
$portList[$i]->createPort($update_existing);
}
Expand Down