. */ //require 'Yay/SelfDescribing.php'; /** * A representation of a Method invocation. * This is a container for the object the method was invoked on, the method- * name and the arguments in the invocation. * @author Chris Corbyn * @package Yay */ interface Yay_Invocation extends Yay_SelfDescribing { /** * Get the object which this Invocation occured on. * @return object */ public function getObject(); /** * Get the method name of the invoked method. * @return string */ public function getMethod(); /** * Get the argument list in the Invocation. * @return array */ public function &getArguments(); }