This is not needed anymore

This commit is contained in:
Rafal Kupiec 2018-07-28 00:02:48 +02:00
父節點 72f2cc2c1b
當前提交 765ec4d074
簽署人: belliash
GPG Key ID: 4E829243E0CFE6B4
共有 3 個文件被更改,包括 0 次插入37 次删除

查看文件

@ -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();
?>