Subversion Repositories Applications.framework

Rev

Rev 5 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5 aurelien 1
<?php
2
class TestClass extends MyClass
3
{
4
 
5
    function TestClass() {
6
        parent::MyClass();
7
        parent::__construct();
8
    }
9
 
10
    function __construct() {
11
        parent::MyClass();
12
        parent::__construct();
13
    }
14
 
15
}
16
 
17
class MyClass
18
{
19
 
20
    function MyClass() {
21
        parent::YourClass();
22
        parent::__construct();
23
    }
24
 
25
    function __construct() {
26
        parent::YourClass();
27
        parent::__construct();
28
    }
29
 
30
}
31
?>