PHP Classes

File: vendor/nikic/php-parser/test/code/parser/stmt/namespace/outsideStmt.test

Recommend this page to a friend!
  Packages of Abed Nego Ragil Putra   Laravel Blogging Platform   vendor/nikic/php-parser/test/code/parser/stmt/namespace/outsideStmt.test   Download  
File: vendor/nikic/php-parser/test/code/parser/stmt/namespace/outsideStmt.test
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Blogging Platform
Manage blog posts using Laravel and Bootstrap
Author: By
Last change:
Date: 8 months ago
Size: 878 bytes
 

Contents

Class file image Download
Some statements may occur outside of namespaces ----- <?php declare(A='B'); namespace B { } __halt_compiler() ?> Hi! ----- array( 0: Stmt_Declare( declares: array( 0: Stmt_DeclareDeclare( key: A value: Scalar_String( value: B ) ) ) stmts: null ) 1: Stmt_Namespace( name: Name( parts: array( 0: B ) ) stmts: array( ) ) 2: Stmt_HaltCompiler( remaining: Hi! ) ) ----- <?php /* Comment */ ; namespace Foo; ----- array( 0: Stmt_Nop( comments: array( 0: /* Comment */ ) ) 1: Stmt_Namespace( name: Name( parts: array( 0: Foo ) ) stmts: array( ) ) )