function coder_heredoc in Coder 5
Same name and namespace in other branches
- 5.2 tests/coder_style.inc \coder_heredoc()
File
- tests/
coder_style.inc, line 53 - This include file implements tests for the Drupal Standards
Code
function coder_heredoc() {
$var = <<<__EOD__
<br><!-- a php error and not a camelCase error -->
<B><!-- an uppercase XHTML error -->
__EOD__;
$var = <<<__EOD__
<br><!-- and again -->
__EOD__;
}