. */ //require 'Yay/Invocation.php'; /** * Listens for Invocations and returns a suitable value. * @author Chris Corbyn * @package Yay */ interface Yay_InvocationHandler { /** * Handle the given $invocation and return a value for it. * @param Yay_Invocation $invocation * @return mixed */ public function &handleInvocation(Yay_Invocation $invocation); }