Fix #5: Included files content is unavailable during compilation #21
@ -1,9 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
class Test1 {
|
|
||||||
}
|
|
||||||
|
|
||||||
$test = new Test1();
|
|
||||||
var_dump($test);
|
|
||||||
|
|
||||||
?>
|
|
@ -1,12 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
class Test1 {
|
|
||||||
}
|
|
||||||
|
|
||||||
class Test2 extends Test1 {
|
|
||||||
}
|
|
||||||
|
|
||||||
$test = new Test2();
|
|
||||||
var_dump($test);
|
|
||||||
|
|
||||||
?>
|
|
@ -1,16 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
class Test1 {
|
|
||||||
public $arg = 'Hello World!';
|
|
||||||
}
|
|
||||||
|
|
||||||
class Test2 extends Test1 {
|
|
||||||
public function test() {
|
|
||||||
echo $this->arg;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$test = new Test2();
|
|
||||||
$test->test();
|
|
||||||
|
|
||||||
?>
|
|
Loading…
Reference in New Issue
Block a user