PHP Classes

File: vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Docs/Namespaces/NamespaceDeclarationStandard.xml

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

Contents

Class file image Download
<documentation title="Namespace Declarations"> <standard> <![CDATA[ There must be one blank line after the namespace declaration. ]]> </standard> <code_comparison> <code title="Valid: One blank line after the namespace declaration."> <![CDATA[ namespace \Foo\Bar; <em></em> use \Baz; ]]> </code> <code title="Invalid: No blank line after the namespace declaration."> <![CDATA[ namespace \Foo\Bar; use \Baz; ]]> </code> </code_comparison> </documentation>