. */ /** * Page Interface * * Implemented by Page. * * @since 4.7.0 * @package Skin */ namespace Textpattern\Skin; interface PageInterface { /** * $infos+$name properties setter. * * @param string $name Page name; * @param string $user_html Page contents; * @return object $this The current class object (chainable). */ public function setInfos( $name, $user_html = null ); }