<?php class A { protected $foo = 1; public function getFoo() { return $this->foo; } } class B extends A { public function setFoo($value) { $this->foo = $value; } }
You have javascript disabled. You will not be able to edit any code.