PHP Classes

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

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Download Installed Plugin   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: Download Installed Plugin
Download a WordPress plugin as a ZIP archive
Author: By
Last change:
Date: Yesterday
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>