PHP Classes

File: vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/WhiteSpace/SpreadOperatorSpacingAfterStandard.xml

Recommend this page to a friend!
  Classes of milenmk   Simple PHP Password Manager   vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/WhiteSpace/SpreadOperatorSpacingAfterStandard.xml   Download  
File: vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/WhiteSpace/SpreadOperatorSpacingAfterStandard.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Simple PHP Password Manager
Application to store and retrieve user password
Author: By
Last change:
Date: 1 year ago
Size: 934 bytes
 

Contents

Class file image Download
<documentation title="Spacing After Spread Operator"> <standard> <![CDATA[ There should be no space between the spread operator and the variable/function call it applies to. ]]> </standard> <code_comparison> <code title="Valid: No space between the spread operator and the variable/function call it applies to."> <![CDATA[ function foo(<em>&...$spread</em>) { bar(<em>...$spread</em>); bar( [<em>...$foo</em>], <em>...array_values($keyedArray)</em> ); } ]]> </code> <code title="Invalid: space found between the spread operator and the variable/function call it applies to."> <![CDATA[ function bar(<em>... </em>$spread) { bar(<em>... </em>$spread ); bar( [<em>... </em>$foo ],<em>.../*comment*/</em>array_values($keyedArray) ); } ]]> </code> </code_comparison> </documentation>