. */ interface IRundaily { /** * Run the rundaily */ public function run(); /** * Should this rundaily be run? * * @return boolean true if it should be run */ public function isEnabled(); /** * Get title * * @return string title of this rundaily */ public function getTitle(); /** * Get all messages * * @return array with all messages */ public function getMessages(); } ?>