<?php class A { public static function b() { echo static::class; } } class B extends A {} $r = new \ReflectionMethod('B', 'b'); var_dump($r->getClosureScopeClass());
You have javascript disabled. You will not be able to edit any code.