. */ //require 'Yay/SelfDescribing.php'; /** * An expectation about what State a state machine is in. * @author Chris Corbyn * @package Yay */ interface Yay_StatePredicate extends Yay_SelfDescribing { /** * Return true if the state machine is in this state. * @return boolean */ public function isActive(); }