PHP Classes

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

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Nolimitbuzz WP Theme   vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/WhiteSpace/HereNowdocIdentifierSpacingStandard.xml   Download  
File: vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/WhiteSpace/HereNowdocIdentifierSpacingStandard.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Nolimitbuzz WP Theme
WordPress theme to used as start of new themes
Author: By
Last change:
Date: 7 days ago
Size: 625 bytes
 

Contents

Class file image Download
<documentation title="Heredoc Nowdoc Identifier Spacing"> <standard> <![CDATA[ There should be no space between the <<< and the heredoc/nowdoc identifier string. ]]> </standard> <code_comparison> <code title="Valid: No space between the &lt;&lt;&lt; and the identifier string."> <![CDATA[ $heredoc = <em><<<EOD</em> some text EOD; ]]> </code> <code title="Invalid: Whitespace between the &lt;&lt;&lt; and the identifier string."> <![CDATA[ $heredoc = <em><<< END</em> some text END; ]]> </code> </code_comparison> </documentation>