PHP Classes

File: vendor/nikic/php-parser/test/code/prettyPrinter/stmt/alias.test

Recommend this page to a friend!
  Packages of Abed Nego Ragil Putra   Laravel Blogging Platform   vendor/nikic/php-parser/test/code/prettyPrinter/stmt/alias.test   Download  
File: vendor/nikic/php-parser/test/code/prettyPrinter/stmt/alias.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: 313 bytes
 

Contents

Class file image Download
Aliases (namespacing) ----- <?php use A\B; use C\D as E; use F\G as H, J; use function foo\bar; use function foo\bar as baz; use const foo\BAR; use const foo\BAR as BAZ; ----- use A\B; use C\D as E; use F\G as H, J; use function foo\bar; use function foo\bar as baz; use const foo\BAR; use const foo\BAR as BAZ;