PHP Classes

File: vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/UpperCaseConstantStandard.xml

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Download Installed Plugin   vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/UpperCaseConstantStandard.xml   Download  
File: vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/UpperCaseConstantStandard.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Download Installed Plugin
Download a WordPress plugin as a ZIP archive
Author: By
Last change:
Date: 2 days ago
Size: 621 bytes
 

Contents

Class file image Download
<documentation title="Uppercase PHP Constants"> <standard> <![CDATA[ The <em>true</em>, <em>false</em> and <em>null</em> constants must always be uppercase. ]]> </standard> <code_comparison> <code title="Valid: Uppercase constants."> <![CDATA[ if ($var === <em>FALSE</em> || $var === <em>NULL</em>) { $var = <em>TRUE</em>; } ]]> </code> <code title="Invalid: Lowercase constants."> <![CDATA[ if ($var === <em>false</em> || $var === <em>null</em>) { $var = <em>true</em>; } ]]> </code> </code_comparison> </documentation>