/ */ class Independent_Module extends P4Cms_Module_Integration { /** * A mock load method. * * @return boolean Indicates whether load was successful. */ public static function load() { return true; } /** * A static module method for testing. * * @param mixed $input Some input. * @return mixed returns whatever was passed */ public static function returnInput($input) { return $input; } }