PHP Classes

File: vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/PHP/HeredocStandard.xml

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Nolimitbuzz WP Theme   vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/PHP/HeredocStandard.xml   Download  
File: vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/PHP/HeredocStandard.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: 27 days ago
Size: 546 bytes
 

Contents

Class file image Download
<documentation title="Heredoc"> <standard> <![CDATA[ Forbids the use of heredoc and nowdoc syntax. ]]> </standard> <code_comparison> <code title="Valid: Using standard strings or inline HTML."> <![CDATA[ $text = "some $text"; ?> some text <?php ]]> </code> <code title="Invalid: Using heredoc or nowdoc syntax."> <![CDATA[ $text = <em><<<EOD some $text EOD</em>; echo <em><<<'EOD' some text EOD</em>; ]]> </code> </code_comparison> </documentation>