Astra_Migrate_Header_Components::get_input_schema()

Get input schema.


Description


Return

(array)


Source

File: inc/abilities/customizer/header/class-astra-migrate-header-components.php

	public function get_input_schema() {
		return array(
			'type'       => 'object',
			'properties' => array(
				'dry_run' => array(
					'type'        => 'boolean',
					'description' => 'If true, shows what would be changed without actually updating. Default: false',
					'default'     => false,
				),
			),
		);
	}

User Contributed Notes

You must log in before being able to contribute a note or feedback.