```php namespace Example; class Closure { protected test; public function callback() { return function () { return this->test; }; } } ```