* @link https://www.oxidmodule.com */ declare(strict_types=1); namespace O3\TinyMCE\Application\Core\TinyMCE\Options; class Menubar extends AbstractOption { protected string $key = 'menubar'; public function get(): string { return 'file edit view insert format tools table help'; } public function isQuoted(): bool { return true; } }