PHP Classes

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

Recommend this page to a friend!
  Classes of milenmk   Simple PHP Password Manager   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: Simple PHP Password Manager
Application to store and retrieve user password
Author: By
Last change:
Date: 1 year ago
Size: 719 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 on the inside of a set of arbitrary parentheses."> <![CDATA[ $a = ( null !== $extra ); ]]> </code> <code title="Invalid: new lines on the inside of a set of arbitrary parentheses."> <![CDATA[ $a = ( null !== $extra ); ]]> </code> </code_comparison> </documentation>