<?php class Baz{ private $bar = "totally a different field"; function &no_error_here(){ return $this->bar; } } class Foo extends Baz { private int $bar = 42; public function &ok_error_here(){ return $this->bar; } } $foo = new Foo(); var_dump($foo); $foo->no_error_here(); $foo->ok_error_here();
You have javascript disabled. You will not be able to edit any code.