PHP Classes

File: vendor/wp-coding-standards/wpcs/WordPress/Docs/WhiteSpace/CastStructureSpacingStandard.xml

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Nolimitbuzz WP Theme   vendor/wp-coding-standards/wpcs/WordPress/Docs/WhiteSpace/CastStructureSpacingStandard.xml   Download  
File: vendor/wp-coding-standards/wpcs/WordPress/Docs/WhiteSpace/CastStructureSpacingStandard.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: 3 days ago
Size: 727 bytes
 

Contents

Class file image Download
<documentation title="Cast Structure Spacing"> <standard> <![CDATA[ A type cast should be preceded by whitespace. There is only one exception to this rule: when the cast is preceded by the spread operator there should be no space between the spread operator and the cast. ]]> </standard> <code_comparison> <code title="Valid: space before typecast."> <![CDATA[ $a =<em> </em>(int) '420'; // No space between spread operator and cast. $a = function_call( <em>...(array)</em> $mixed ); ]]> </code> <code title="Invalid: no space before typecast."> <![CDATA[ $a <em>=(</em>int) '420'; ]]> </code> </code_comparison> </documentation>