PATH:
opt
/
cpanel
/
ea-wappspector
/
vendor
/
squizlabs
/
php_codesniffer
/
src
/
Standards
/
Squiz
/
Tests
/
Operators
if (value === TRUE) { } else if (value === FALSE) { } if (value == TRUE) { } else if (value == FALSE) { } if (value) { } else if (!value) { } if (value.isSomething === TRUE) { } else if (myFunction(value) === FALSE) { } if (value.isSomething == TRUE) { } else if (myFunction(value) == FALSE) { } if (value.isSomething) { } else if (!myFunction(value)) { } if (value === TRUE || other === FALSE) { } if (value == TRUE || other == FALSE) { } if (value || !other) { } if (one === TRUE || two === TRUE || three === FALSE || four === TRUE) { } if (one || two || !three || four) { } while (one == true) { } while (one === true) { } do { } while (one == true); do { } while (one === true); for (one = 10; one != 0; one--) { } for (one = 10; one !== 0; one--) { } for (type in types) { } variable = (variable2 === true) ? variable1 : "foobar"; variable = (variable2 == true) ? variable1 : "foobar"; variable = (variable2 === false) ? variable1 : "foobar"; variable = (variable2 == false) ? variable1 : "foobar"; variable = (variable2 === 0) ? variable1 : "foobar"; variable = (variable2 == 0) ? variable1 : "foobar";
[-] ComparisonOperatorUsageUnitTest.inc
[edit]
[-] IncrementDecrementUsageUnitTest.inc
[edit]
[-] ComparisonOperatorUsageUnitTest.js
[edit]
[+]
..
[-] IncrementDecrementUsageUnitTest.php
[edit]
[-] ValidLogicalOperatorsUnitTest.php
[edit]
[-] ComparisonOperatorUsageUnitTest.php
[edit]
[-] ValidLogicalOperatorsUnitTest.inc
[edit]