📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-02 15:11:23
📂
/ (Root)
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
squizlabs
/
php_codesniffer
/
src
/
Standards
/
Squiz
/
Tests
/
Operators
📍 /opt/cpanel/ea-wappspector/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Operators
🔄 Refresh
✏️
Editing: ValidLogicalOperatorsUnitTest.inc
Read Only
<?php if ($value === TRUE || $other === FALSE) { } if ($value === TRUE OR $other === FALSE) { } if ($value === TRUE && $other === FALSE) { } if ($value === TRUE and $other === FALSE) { } if ($one === TRUE && ($two === TRUE || $three === TRUE)) { } if ($one === TRUE AND ($two === TRUE or $three === TRUE)) { } if ($a ^ $b) { } if ($a xor $b) { } if ($a XOR $b) { } ?>
💾 Save Changes
❌ Cancel