PHP Classes

File: zray/vendor/PHP_CodeSniffer-2.2.0/CodeSniffer/Standards/PSR2/Docs/Namespaces/NamespaceDeclarationStandard.xml

Recommend this page to a friend!
  Classes of Simo   CodeIgniter Plugin for Z-Ray   zray/vendor/PHP_CodeSniffer-2.2.0/CodeSniffer/Standards/PSR2/Docs/Namespaces/NamespaceDeclarationStandard.xml   Download  
File: zray/vendor/PHP_CodeSniffer-2.2.0/CodeSniffer/Standards/PSR2/Docs/Namespaces/NamespaceDeclarationStandard.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: CodeIgniter Plugin for Z-Ray
Show CodeIgniter application information in Z-Ray
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>