<?php class A { static function method() { return static function() { return static::class; }; } } class B extends A {} $a = A::method(); $b = B::method(); var_dump($a()); var_dump($b());
You have javascript disabled. You will not be able to edit any code.