PHP Classes

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

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   Download  
File: vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/EmptyPHPStatementUnitTest.2.inc
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: 556 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. -->