PHP Classes

File: vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/EmptyPHPStatementUnitTest.2.inc.fixed

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Nolimitbuzz WP Theme   vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/EmptyPHPStatementUnitTest.2.inc.fixed   Download  
File: vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/EmptyPHPStatementUnitTest.2.inc.fixed
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: 19 days ago
Size: 524 bytes
 

Contents

Class file image Download
<!-- Tests with short open tag. --> <input name="<?something_else(); ?>" /> <input name="<? something_else(); ?>" /> /* * Test empty statement: no code between PHP open and close tag. */ <input name="<? something_else() ?>" /> <!-- OK. --> <input name="<? something_else(); ?>" /> <!-- OK. --> <input name="<? /* comment */ ?>" /> <!-- OK. --> <input name="" /> <!-- Bad. --> <input name="" /> <!-- Bad. --> <!-- /* * Test detecting & fixing a combination of the two checks. */ --> <input name="" /> <!-- Bad. -->