This is not needed anymore

Este commit está contenido en:
2018-07-28 00:02:48 +02:00
padre 72f2cc2c1b
commit 765ec4d074
Se han modificado 3 ficheros con 0 adiciones y 37 borrados

Ver fichero

@@ -1,9 +0,0 @@
<?php
class Test1 {
}
$test = new Test1();
var_dump($test);
?>

Ver fichero

@@ -1,12 +0,0 @@
<?php
class Test1 {
}
class Test2 extends Test1 {
}
$test = new Test2();
var_dump($test);
?>

Ver fichero

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