PHP Classes

File: vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Formatting/NoSpaceAfterCastStandard.xml

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

Contents

Class file image Download
<documentation title="Space After Casts"> <standard> <![CDATA[ Spaces are not allowed after casting operators. ]]> </standard> <code_comparison> <code title="Valid: A cast operator is immediately before its value."> <![CDATA[ $foo = (string)1; ]]> </code> <code title="Invalid: A cast operator is followed by whitespace."> <![CDATA[ $foo = (string)<em> </em>1; ]]> </code> </code_comparison> </documentation>