PHP Classes

File: vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Formatting/SpaceAfterNotStandard.xml

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Download Installed Plugin   vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Formatting/SpaceAfterNotStandard.xml   Download  
File: vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Formatting/SpaceAfterNotStandard.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: Yesterday
Size: 696 bytes
 

Contents

Class file image Download
<documentation title="Space After NOT operator"> <standard> <![CDATA[ Exactly one space is allowed after the NOT operator. ]]> </standard> <code_comparison> <code title="Valid: A NOT operator followed by one space."> <![CDATA[ if (!<em> </em>$someVar || !<em> </em>$x instanceOf stdClass) {}; ]]> </code> <code title="Invalid: A NOT operator not followed by whitespace or followed by too much whitespace."> <![CDATA[ if (!<em></em>$someVar || !<em></em>$x instanceOf stdClass) {}; if (!<em> </em>$someVar || !<em> </em>$x instanceOf stdClass) {}; ]]> </code> </code_comparison> </documentation>