Subversion Repositories Applications.framework

Compare Revisions

Ignore whitespace Rev 4 → Rev 5

/trunk/tests/PHP_CodeSniffer-1.2.0RC1/CodeSniffer/Standards/Generic/Tests/PHP/LowerCaseConstantUnitTest.js
New file
0,0 → 1,14
if (variable === true) { }
if (variable === TRUE) { }
if (variable === True) { }
variable = True;
 
if (variable === false) { }
if (variable === FALSE) { }
if (variable === False) { }
variable = false;
 
if (variable === null) { }
if (variable === NULL) { }
if (variable === Null) { }
variable = NULL;