<?php class Animal { function run() { return 'run'; } } class Dog extends Animal {} $dog = new Dog(); $reflector = new ReflectionMethod($dog, 'run'); echo $reflector->class;
You have javascript disabled. You will not be able to edit any code.