~ubuntu-branches/ubuntu/trusty/netbeans/trusty

« back to all changes in this revision

Viewing changes to scripting/php/srcmodel/test/unit/src/org/netbeans/modules/php/model/resources/class.php

  • Committer: Bazaar Package Importer
  • Author(s): Marek Slama
  • Date: 2008-01-29 14:11:22 UTC
  • Revision ID: james.westby@ubuntu.com-20080129141122-fnzjbo11ntghxfu7
Tags: upstream-6.0.1
ImportĀ upstreamĀ versionĀ 6.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?
 
2
class Class {
 
3
 
 
4
        var $attr;
 
5
        const A = 1;
 
6
        
 
7
        protected $my = 1, $v ;
 
8
        
 
9
        abstract function func( $arg );
 
10
        
 
11
        static function method() {
 
12
        }
 
13
}
 
14
 
 
15
abstract class A extends Class implements InterfaceName, Second {
 
16
 
 
17
        public final function op( $arg ){
 
18
        }
 
19
        
 
20
        private function check(){
 
21
        }
 
22
        
 
23
        const A =1 , B=2;
 
24
        
 
25
        protected $attr , $my =1 ;
 
26
        
 
27
        public static $C = "const";
 
28
}
 
29
?>