PHP Classes

File: vendor/wp-coding-standards/wpcs/WordPress/Docs/Arrays/MultipleStatementAlignmentStandard.xml

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Nolimitbuzz WP Theme   vendor/wp-coding-standards/wpcs/WordPress/Docs/Arrays/MultipleStatementAlignmentStandard.xml   Download  
File: vendor/wp-coding-standards/wpcs/WordPress/Docs/Arrays/MultipleStatementAlignmentStandard.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: 19 days ago
Size: 1,410 bytes
 

Contents

Class file image Download
<documentation title="Multiple Statement Alignment"> <standard> <![CDATA[ When declaring arrays, there should be one space on either side of a double arrow operator used to assign a value to a key. ]]> </standard> <code_comparison> <code title="Valid: correct spacing between the key and value."> <![CDATA[ $foo = array( 'cat'<em> => </em>22 ); $bar = array( 'year'<em> => </em>$current_year ); ]]> </code> <code title="Invalid: No or incorrect spacing between the key and value."> <![CDATA[ $foo = array( 'cat'<em>=></em>22 ); $bar = array( 'year'<em>=> </em>$current_year ); ]]> </code> </code_comparison> <standard> <![CDATA[ In the case of a block of related assignments, it is recommended to align the arrows to promote readability. ]]> </standard> <code_comparison> <code title="Valid: Double arrow operators aligned"> <![CDATA[ $args = array( 'cat'<em> => </em>22, 'year'<em> => </em>$current_year, 'monthnum'<em> => </em>$current_month, ); ]]> </code> <code title="Invalid: Not aligned; harder to read"> <![CDATA[ $args = array( 'cat' <em>=></em> 22, 'year' <em>=></em> $current_year, 'monthnum' <em>=></em> $current_month, ); ]]> </code> </code_comparison> </documentation>