PHP Classes

File: vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/WhiteSpace/ArbitraryParenthesesSpacingStandard.xml

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

Contents

Class file image Download
<documentation title="Arbitrary Parentheses Spacing"> <standard> <![CDATA[ Arbitrary sets of parentheses should have no spaces inside. ]]> </standard> <code_comparison> <code title="Valid: No spaces on the inside of a set of arbitrary parentheses."> <![CDATA[ $a = (null !== $extra); ]]> </code> <code title="Invalid: Spaces or new lines on the inside of a set of arbitrary parentheses."> <![CDATA[ $a = ( null !== $extra ); $a = ( null !== $extra ); ]]> </code> </code_comparison> </documentation>