. namespace core\output; /** * Interface marking other classes as suitable for renderer_base::render() * * @copyright 2010 Petr Skoda (skodak) info@skodak.org * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * @package core * @category output */ interface renderable { // Intentionally empty. } // Alias this class to the old name. // This file will be autoloaded by the legacyclasses autoload system. // In future all uses of this class will be corrected and the legacy references will be removed. class_alias(renderable::class, \renderable::class);