<?php class Foo { /** * @var int */ private $bar; public function __construct(int $bar) { $this->bar = $bar; } public function getBar() { return $this->bar; } public function baz(int $boz) { return $boz . ':' . $this->getBar(); } public function __invoke(int $boz) { echo $this->baz($boz); echo "fooobar"; } } $foo2 = new Foo(1); $foo2(2);
You have javascript disabled. You will not be able to edit any code.