. /** * Editor interface for setting editor values. * * @package behat * @category test * @copyright 2022 Andrew Lyons * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace core_behat; interface settable_editor { /** * Set the editor value. * * @param string $editorid The id of the editor within the page * @param string $value The intended content of the editor */ public function set_editor_value(string $editorid, string $value): void; }