PHP Classes

File: vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Docs/Operators/OperatorSpacingStandard.xml

Recommend this page to a friend!
  Classes of milenmk   Simple PHP Password Manager   vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Docs/Operators/OperatorSpacingStandard.xml   Download  
File: vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Docs/Operators/OperatorSpacingStandard.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: 901 bytes
 

Contents

Class file image Download
<documentation title="Operator Spacing"> <standard> <![CDATA[ All binary and ternary (but not unary) operators MUST be preceded and followed by at least one space. This includes all arithmetic, comparison, assignment, bitwise, logical (excluding ! which is unary), string concatenation, type operators, trait operators (insteadof and as), and the single pipe operator (e.g. ExceptionType1 | ExceptionType2 $e). ]]> </standard> <code_comparison> <code title="Valid: At least 1 space used."> <![CDATA[ if ($a === $b) { $foo = $bar ?? $a ?? $b; } elseif ($a > $b) { $variable = $foo ? 'foo' : 'bar'; } ]]> </code> <code title="Invalid: No spacing used."> <![CDATA[ if ($a===$b) { $foo=$bar??$a??$b; } elseif ($a>$b) { $variable=$foo?'foo':'bar'; } ]]> </code> </code_comparison> </documentation>