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,
),
),
);
}
Expand full source code Collapse full source code View on Trac