<?php class Proxy { private readonly string $property; } $proxy = new Proxy; $closure = function () { $this->property = 'foo'; }; $closure2 = $closure->bindTo($proxy, 'Proxy'); $closure2(); var_dump($proxy);
You have javascript disabled. You will not be able to edit any code.