Changes between Initial Version and Version 3 of Ticket #208

Show
Ignore:
Timestamp:
12/12/2008 06:47:10 AM (4 years ago)
Author:
moo
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #208

    • Property status changed from new to accepted
  • Ticket #208 – description

    initial v3  
    44{{{ 
    55<?php 
     6 
     7class A 
     8{ 
     9        public function __construct( array $a = NULL) 
     10        { 
     11          echo 'Fooo'; 
     12        } 
     13} 
     14 
     15new A(); 
     16}}} 
     17 
     18test2.php 
     19{{{ 
     20<?php 
     21namespace My\NS; 
     22 
     23use My\NS; 
    624 
    725class A