. */ /** * The interface for all models * * @version 1.0 * @date 20.11.2010 * @author Wim van Ravesteijn * @license http://opensource.org/licenses/gpl-license.php GNU Public License */ require_once(FILESYSTEMROOTPATH."include/classes/InvalidInputException.php"); require_once(FILESYSTEMROOTPATH."include/classes/IndexOutOfBoundsException.php"); require_once(FILESYSTEMROOTPATH."include/classes/Validator.php"); interface IModel { /** * Get the id * * @return the id */ public function getId(); }