<?php class Foo { private $bar; public function __construct($bar) { $this->bar = $bar; } public function bar() { return $this->bar; } } $foo = new Foo(); var_dump($foo->bar());
You have javascript disabled. You will not be able to edit any code.