When PHP interprets a class, does it have to evaluate every method in a class upon creating an object? For example, if I have really large class, with a lot of methods but I'm only calling one method from that class, does PHP have to go though the entire class, including every method it contains, to instantiate the object and excute the one method I'm using?