. */ //require 'Yay/Description.php'; /** * Components implementing this can describe what they do to a Description instance. * @author Chris Corbyn * @package Yay */ interface Yay_SelfDescribing { /** * Write a description of this self describing object to Description. * @param Yay_Description $description */ public function describeTo(Yay_Description $description); }