ply_filters( 'get_attached_media_args', $args, $type, $post ); $children = get_children( $args ); /** * Filters the list of media attached to the given post. * * @since 3.6.0 * * @param WP_Post[] $children Array of media attached to the given post. * @param string $type Mime type of the media desired. * @param WP_Post $post Post object. */ return (array) apply_filters( 'get_attached_media', $children, $type, $post ); } /** * Checks the HTML content for an audio, video, object, embed, or iframe tags. * * @since 3.6.0 * * @param string $content A string of HTML which might contain media elements. * @param string[] $types An array of media types: 'audio', 'video', 'object', 'embed', or 'iframe'. * @return string[] Array of found HTML media elements. */ function get_media_embedded_in_content( $content, $types = null ) { $html = array(); /** * Filters the embedded media types that are allowed to be returned from the content blob. * * @since 4.2.0 * * @param string[] $allowed_media_types An array of allowed media types. Default media types are * 'audio', 'video', 'object', 'embed', and 'iframe'. */ $allowed_media_types = apply_filters( 'media_embedded_in_content_allowed_types', array( 'audio', 'video', 'object', 'embed', 'iframe' ) ); if ( ! empty( $types ) ) { if ( ! is_array( $types ) ) { $types = array( $types ); } $allowed_media_types = array_intersect( $allowed_media_types, $types ); } $tags = implode( '|', $allowed_media_types ); if ( preg_match_all( '#<(?P' . $tags . ')[^<]*?(?:>[\s\S]*?<\/(?P=tag)>|\s*\/>)#', $content, $matches ) ) { foreach ( $matches[0] as $match ) { $html[] = $match; } } return $html; } /** * Retrieves galleries from the passed post's content. * * @since 3.6.0 * * @param int|WP_Post $post Post ID or object. * @param bool $html Optional. Whether to return HTML or data in the array. Default true. * @return array A list of arrays, each containing gallery data and srcs parsed * from the expanded shortcode. */ function get_post_galleries( $post, $html = true ) { $post = get_post( $post ); if ( ! $post ) { return array(); } if ( ! has_shortcode( $post->post_content, 'gallery' ) && ! has_block( 'gallery', $post->post_content ) ) { return array(); } $galleries = array(); if ( preg_match_all( '/' . get_shortcode_regex() . '/s', $post->post_content, $matches, PREG_SET_ORDER ) ) { foreach ( $matches as $shortcode ) { if ( 'gallery' === $shortcode[2] ) { $srcs = array(); $shortcode_attrs = shortcode_parse_atts( $shortcode[3] ); if ( ! is_array( $shortcode_attrs ) ) { $shortcode_attrs = array(); } // Specify the post ID of the gallery we're viewing if the shortcode doesn't reference another post already. if ( ! isset( $shortcode_attrs['id'] ) ) { $shortcode[3] .= ' id="' . (int) $post->ID . '"'; } $gallery = do_shortcode_tag( $shortcode ); if ( $html ) { $galleries[] = $gallery; } else { preg_match_all( '#src=([\'"])(.+?)\1#is', $gallery, $src, PREG_SET_ORDER ); if ( ! empty( $src ) ) { foreach ( $src as $s ) { $srcs[] = $s[2]; } } $galleries[] = array_merge( $shortcode_attrs, array( 'src' => array_values( array_unique( $srcs ) ), ) ); } } } } if ( has_block( 'gallery', $post->post_content ) ) { $post_blocks = parse_blocks( $post->post_content ); while ( $block = array_shift( $post_blocks ) ) { $has_inner_blocks = ! empty( $block['innerBlocks'] ); // Skip blocks with no blockName and no innerHTML. if ( ! $block['blockName'] ) { continue; } // Skip non-Gallery blocks. if ( 'core/gallery' !== $block['blockName'] ) { // Move inner blocks into the root array before skipping. if ( $has_inner_blocks ) { array_push( $post_blocks, ...$block['innerBlocks'] ); } continue; } // New Gallery block format as HTML. if ( $has_inner_blocks && $html ) { $block_html = wp_list_pluck( $block['innerBlocks'], 'innerHTML' ); $galleries[] = '
' . implode( ' ', $block_html ) . '
'; continue; } $srcs = array(); // New Gallery block format as an array. if ( $has_inner_blocks ) { $attrs = wp_list_pluck( $block['innerBlocks'], 'attrs' ); $ids = wp_list_pluck( $attrs, 'id' ); foreach ( $ids as $id ) { $url = wp_get_attachment_url( $id ); if ( is_string( $url ) && ! in_array( $url, $srcs, true ) ) { $srcs[] = $url; } } $galleries[] = array( 'ids' => implode( ',', $ids ), 'src' => $srcs, ); continue; } // Old Gallery block format as HTML. if ( $html ) { $galleries[] = $block['innerHTML']; continue; } // Old Gallery block format as an array. $ids = ! empty( $block['attrs']['ids'] ) ? $block['attrs']['ids'] : array(); // If present, use the image IDs from the JSON blob as canonical. if ( ! empty( $ids ) ) { foreach ( $ids as $id ) { $url = wp_get_attachment_url( $id ); if ( is_string( $url ) && ! in_array( $url, $srcs, true ) ) { $srcs[] = $url; } } $galleries[] = array( 'ids' => implode( ',', $ids ), 'src' => $srcs, ); continue; } // Otherwise, extract srcs from the innerHTML. preg_match_all( '#src=([\'"])(.+?)\1#is', $block['innerHTML'], $found_srcs, PREG_SET_ORDER ); if ( ! empty( $found_srcs[0] ) ) { foreach ( $found_srcs as $src ) { if ( isset( $src[2] ) && ! in_array( $src[2], $srcs, true ) ) { $srcs[] = $src[2]; } } } $galleries[] = array( 'src' => $srcs ); } } /** * Filters the list of all found galleries in the given post. * * @since 3.6.0 * * @param array $galleries Associative array of all found post galleries. * @param WP_Post $post Post object. */ return apply_filters( 'get_post_galleries', $galleries, $post ); } /** * Checks a specified post's content for gallery and, if present, return the first * * @since 3.6.0 * * @param int|WP_Post $post Optional. Post ID or WP_Post object. Default is global $post. * @param bool $html Optional. Whether to return HTML or data. Default is true. * @return string|array Gallery data and srcs parsed from the expanded shortcode. */ function get_post_gallery( $post = 0, $html = true ) { $galleries = get_post_galleries( $post, $html ); $gallery = reset( $galleries ); /** * Filters the first-found post gallery. * * @since 3.6.0 * * @param array $gallery The first-found post gallery. * @param int|WP_Post $post Post ID or object. * @param array $galleries Associative array of all found post galleries. */ return apply_filters( 'get_post_gallery', $gallery, $post, $galleries ); } /** * Retrieves the image srcs from galleries from a post's content, if present. * * @since 3.6.0 * * @see get_post_galleries() * * @param int|WP_Post $post Optional. Post ID or WP_Post object. Default is global `$post`. * @return array A list of lists, each containing image srcs parsed. * from an expanded shortcode */ function get_post_galleries_images( $post = 0 ) { $galleries = get_post_galleries( $post, false ); return wp_list_pluck( $galleries, 'src' ); } /** * Checks a post's content for galleries and return the image srcs for the first found gallery. * * @since 3.6.0 * * @see get_post_gallery() * * @param int|WP_Post $post Optional. Post ID or WP_Post object. Default is global `$post`. * @return string[] A list of a gallery's image srcs in order. */ function get_post_gallery_images( $post = 0 ) { $gallery = get_post_gallery( $post, false ); return empty( $gallery['src'] ) ? array() : $gallery['src']; } /** * Maybe attempts to generate attachment metadata, if missing. * * @since 3.9.0 * * @param WP_Post $attachment Attachment object. */ function wp_maybe_generate_attachment_metadata( $attachment ) { if ( empty( $attachment ) || empty( $attachment->ID ) ) { return; } $attachment_id = (int) $attachment->ID; $file = get_attached_file( $attachment_id ); $meta = wp_get_attachment_metadata( $attachment_id ); if ( empty( $meta ) && file_exists( $file ) ) { $_meta = get_post_meta( $attachment_id ); $_lock = 'wp_generating_att_' . $attachment_id; if ( ! array_key_exists( '_wp_attachment_metadata', $_meta ) && ! get_transient( $_lock ) ) { set_transient( $_lock, $file ); wp_update_attachment_metadata( $attachment_id, wp_generate_attachment_metadata( $attachment_id, $file ) ); delete_transient( $_lock ); } } } /** * Tries to convert an attachment URL into a post ID. * * @since 4.0.0 * * @global wpdb $wpdb WordPress database abstraction object. * * @param string $url The URL to resolve. * @return int The found post ID, or 0 on failure. */ function attachment_url_to_postid( $url ) { global $wpdb; $dir = wp_get_upload_dir(); $path = $url; $site_url = parse_url( $dir['url'] ); $image_path = parse_url( $path ); // Force the protocols to match if needed. if ( isset( $image_path['scheme'] ) && ( $image_path['scheme'] !== $site_url['scheme'] ) ) { $path = str_replace( $image_path['scheme'], $site_url['scheme'], $path ); } if ( str_starts_with( $path, $dir['baseurl'] . '/' ) ) { $path = substr( $path, strlen( $dir['baseurl'] . '/' ) ); } $sql = $wpdb->prepare( "SELECT post_id, meta_value FROM $wpdb->postmeta WHERE meta_key = '_wp_attached_file' AND meta_value = %s", $path ); $results = $wpdb->get_results( $sql ); $post_id = null; if ( $results ) { // Use the first available result, but prefer a case-sensitive match, if exists. $post_id = reset( $results )->post_id; if ( count( $results ) > 1 ) { foreach ( $results as $result ) { if ( $path === $result->meta_value ) { $post_id = $result->post_id; break; } } } } /** * Filters an attachment ID found by URL. * * @since 4.2.0 * * @param int|null $post_id The post_id (if any) found by the function. * @param string $url The URL being looked up. */ return (int) apply_filters( 'attachment_url_to_postid', $post_id, $url ); } /** * Returns the URLs for CSS files used in an iframe-sandbox'd TinyMCE media view. * * @since 4.0.0 * * @return string[] The relevant CSS file URLs. */ function wpview_media_sandbox_styles() { $version = 'ver=' . get_bloginfo( 'version' ); $mediaelement = includes_url( "js/mediaelement/mediaelementplayer-legacy.min.css?$version" ); $wpmediaelement = includes_url( "js/mediaelement/wp-mediaelement.css?$version" ); return array( $mediaelement, $wpmediaelement ); } /** * Registers the personal data exporter for media. * * @param array[] $exporters An array of personal data exporters, keyed by their ID. * @return array[] Updated array of personal data exporters. */ function wp_register_media_personal_data_exporter( $exporters ) { $exporters['wordpress-media'] = array( 'exporter_friendly_name' => __( 'WordPress Media' ), 'callback' => 'wp_media_personal_data_exporter', ); return $exporters; } /** * Finds and exports attachments associated with an email address. * * @since 4.9.6 * * @param string $email_address The attachment owner email address. * @param int $page Attachment page. * @return array An array of personal data. */ function wp_media_personal_data_exporter( $email_address, $page = 1 ) { // Limit us to 50 attachments at a time to avoid timing out. $number = 50; $page = (int) $page; $data_to_export = array(); $user = get_user_by( 'email', $email_address ); if ( false === $user ) { return array( 'data' => $data_to_export, 'done' => true, ); } $post_query = new WP_Query( array( 'author' => $user->ID, 'posts_per_page' => $number, 'paged' => $page, 'post_type' => 'attachment', 'post_status' => 'any', 'orderby' => 'ID', 'order' => 'ASC', ) ); foreach ( (array) $post_query->posts as $post ) { $attachment_url = wp_get_attachment_url( $post->ID ); if ( $attachment_url ) { $post_data_to_export = array( array( 'name' => __( 'URL' ), 'value' => $attachment_url, ), ); $data_to_export[] = array( 'group_id' => 'media', 'group_label' => __( 'Media' ), 'group_description' => __( 'User’s media data.' ), 'item_id' => "post-{$post->ID}", 'data' => $post_data_to_export, ); } } $done = $post_query->max_num_pages <= $page; return array( 'data' => $data_to_export, 'done' => $done, ); } /** * Adds additional default image sub-sizes. * * These sizes are meant to enhance the way WordPress displays images on the front-end on larger, * high-density devices. They make it possible to generate more suitable `srcset` and `sizes` attributes * when the users upload large images. * * The sizes can be changed or removed by themes and plugins but that is not recommended. * The size "names" reflect the image dimensions, so changing the sizes would be quite misleading. * * @since 5.3.0 * @access private */ function _wp_add_additional_image_sizes() { // 2x medium_large size. add_image_size( '1536x1536', 1536, 1536 ); // 2x large size. add_image_size( '2048x2048', 2048, 2048 ); } /** * Callback to enable showing of the user error when uploading .heic images. * * @since 5.5.0 * * @param array[] $plupload_settings The settings for Plupload.js. * @return array[] Modified settings for Plupload.js. */ function wp_show_heic_upload_error( $plupload_settings ) { $plupload_settings['heic_upload_error'] = true; return $plupload_settings; } /** * Allows PHP's getimagesize() to be debuggable when necessary. * * @since 5.7.0 * @since 5.8.0 Added support for WebP images. * * @param string $filename The file path. * @param array $image_info Optional. Extended image information (passed by reference). * @return array|false Array of image information or false on failure. */ function wp_getimagesize( $filename, array &$image_info = null ) { // Don't silence errors when in debug mode, unless running unit tests. if ( defined( 'WP_DEBUG' ) && WP_DEBUG && ! defined( 'WP_RUN_CORE_TESTS' ) ) { if ( 2 === func_num_args() ) { $info = getimagesize( $filename, $image_info ); } else { $info = getimagesize( $filename ); } } else { /* * Silencing notice and warning is intentional. * * getimagesize() has a tendency to generate errors, such as * "corrupt JPEG data: 7191 extraneous bytes before marker", * even when it's able to provide image size information. * * See https://core.trac.wordpress.org/ticket/42480 */ if ( 2 === func_num_args() ) { // phpcs:ignore WordPress.PHP.NoSilencedErrors $info = @getimagesize( $filename, $image_info ); } else { // phpcs:ignore WordPress.PHP.NoSilencedErrors $info = @getimagesize( $filename ); } } if ( false !== $info ) { return $info; } /* * For PHP versions that don't support WebP images, * extract the image size info from the file headers. */ if ( 'image/webp' === wp_get_image_mime( $filename ) ) { $webp_info = wp_get_webp_info( $filename ); $width = $webp_info['width']; $height = $webp_info['height']; // Mimic the native return format. if ( $width && $height ) { return array( $width, $height, IMAGETYPE_WEBP, sprintf( 'width="%d" height="%d"', $width, $height ), 'mime' => 'image/webp', ); } } // The image could not be parsed. return false; } /** * Extracts meta information about a WebP file: width, height, and type. * * @since 5.8.0 * * @param string $filename Path to a WebP file. * @return array { * An array of WebP image information. * * @type int|false $width Image width on success, false on failure. * @type int|false $height Image height on success, false on failure. * @type string|false $type The WebP type: one of 'lossy', 'lossless' or 'animated-alpha'. * False on failure. * } */ function wp_get_webp_info( $filename ) { $width = false; $height = false; $type = false; if ( 'image/webp' !== wp_get_image_mime( $filename ) ) { return compact( 'width', 'height', 'type' ); } $magic = file_get_contents( $filename, false, null, 0, 40 ); if ( false === $magic ) { return compact( 'width', 'height', 'type' ); } // Make sure we got enough bytes. if ( strlen( $magic ) < 40 ) { return compact( 'width', 'height', 'type' ); } /* * The headers are a little different for each of the three formats. * Header values based on WebP docs, see https://developers.google.com/speed/webp/docs/riff_container. */ switch ( substr( $magic, 12, 4 ) ) { // Lossy WebP. case 'VP8 ': $parts = unpack( 'v2', substr( $magic, 26, 4 ) ); $width = (int) ( $parts[1] & 0x3FFF ); $height = (int) ( $parts[2] & 0x3FFF ); $type = 'lossy'; break; // Lossless WebP. case 'VP8L': $parts = unpack( 'C4', substr( $magic, 21, 4 ) ); $width = (int) ( $parts[1] | ( ( $parts[2] & 0x3F ) << 8 ) ) + 1; $height = (int) ( ( ( $parts[2] & 0xC0 ) >> 6 ) | ( $parts[3] << 2 ) | ( ( $parts[4] & 0x03 ) << 10 ) ) + 1; $type = 'lossless'; break; // Animated/alpha WebP. case 'VP8X': // Pad 24-bit int. $width = unpack( 'V', substr( $magic, 24, 3 ) . "\x00" ); $width = (int) ( $width[1] & 0xFFFFFF ) + 1; // Pad 24-bit int. $height = unpack( 'V', substr( $magic, 27, 3 ) . "\x00" ); $height = (int) ( $height[1] & 0xFFFFFF ) + 1; $type = 'animated-alpha'; break; } return compact( 'width', 'height', 'type' ); } /** * Gets loading optimization attributes. * * This function returns an array of attributes that should be merged into the given attributes array to optimize * loading performance. Potential attributes returned by this function are: * - `loading` attribute with a value of "lazy" * - `fetchpriority` attribute with a value of "high" * * If any of these attributes are already present in the given attributes, they will not be modified. Note that no * element should have both `loading="lazy"` and `fetchpriority="high"`, so the function will trigger a warning in case * both attributes are present with those values. * * @since 6.3.0 * * @global WP_Query $wp_query WordPress Query object. * * @param string $tag_name The tag name. * @param array $attr Array of the attributes for the tag. * @param string $context Context for the element for which the loading optimization attribute is requested. * @return array Loading optimization attributes. */ function wp_get_loading_optimization_attributes( $tag_name, $attr, $context ) { global $wp_query; /* * Closure for postprocessing logic. * It is here to avoid duplicate logic in many places below, without having * to introduce a very specific private global function. */ $postprocess = static function( $loading_attributes, $with_fetchpriority = false ) use ( $tag_name, $attr, $context ) { // Potentially add `fetchpriority="high"`. if ( $with_fetchpriority ) { $loading_attributes = wp_maybe_add_fetchpriority_high_attr( $loading_attributes, $tag_name, $attr ); } // Potentially strip `loading="lazy"` if the feature is disabled. if ( isset( $loading_attributes['loading'] ) && ! wp_lazy_loading_enabled( $tag_name, $context ) ) { unset( $loading_attributes['loading'] ); } return $loading_attributes; }; // Closure to increase media count for images with certain minimum threshold, mostly used for header images. $maybe_increase_content_media_count = static function() use ( $attr ) { /** This filter is documented in wp-includes/media.php */ $wp_min_priority_img_pixels = apply_filters( 'wp_min_priority_img_pixels', 50000 ); // Images with a certain minimum size in the header of the page are also counted towards the threshold. if ( $wp_min_priority_img_pixels <= $attr['width'] * $attr['height'] ) { wp_increase_content_media_count(); } }; $loading_attrs = array(); /* * Skip lazy-loading for the overall block template, as it is handled more granularly. * The skip is also applicable for `fetchpriority`. */ if ( 'template' === $context ) { return $loading_attrs; } // For now this function only supports images and iframes. if ( 'img' !== $tag_name && 'iframe' !== $tag_name ) { return $loading_attrs; } // For any resources, width and height must be provided, to avoid layout shifts. if ( ! isset( $attr['width'], $attr['height'] ) ) { return $loading_attrs; } if ( isset( $attr['loading'] ) ) { /* * While any `loading` value could be set in `$loading_attrs`, for * consistency we only do it for `loading="lazy"` since that is the * only possible value that WordPress core would apply on its own. */ if ( 'lazy' === $attr['loading'] ) { $loading_attrs['loading'] = 'lazy'; if ( isset( $attr['fetchpriority'] ) && 'high' === $attr['fetchpriority'] ) { _doing_it_wrong( __FUNCTION__, __( 'An image should not be lazy-loaded and marked as high priority at the same time.' ), '6.3.0' ); } } return $postprocess( $loading_attrs, true ); } // An image with `fetchpriority="high"` cannot be assigned `loading="lazy"` at the same time. if ( isset( $attr['fetchpriority'] ) && 'high' === $attr['fetchpriority'] ) { return $postprocess( $loading_attrs, true ); } /* * Do not lazy-load images in the header block template part, as they are likely above the fold. * For classic themes, this is handled in the condition below using the 'get_header' action. */ $header_area = WP_TEMPLATE_PART_AREA_HEADER; if ( "template_part_{$header_area}" === $context ) { // Increase media count if there are images in header above a certian minimum size threshold. $maybe_increase_content_media_count(); return $postprocess( $loading_attrs, true ); } // The custom header image is always expected to be in the header. if ( 'get_header_image_tag' === $context ) { // Increase media count if there are images in header above a certian minimum size threshold. $maybe_increase_content_media_count(); return $postprocess( $loading_attrs, true ); } // Special handling for programmatically created image tags. if ( 'the_post_thumbnail' === $context || 'wp_get_attachment_image' === $context || 'widget_media_image' === $context ) { /* * Skip programmatically created images within post content as they need to be handled together with the other * images within the post content. * Without this clause, they would already be considered below which skews the image count and can result in * the first post content image being lazy-loaded or an image further down the page being marked as a high * priority. */ if ( doing_filter( 'the_content' ) ) { return $loading_attrs; } // Conditionally skip lazy-loading on images before the loop. if ( // Only apply for main query but before the loop. $wp_query->before_loop && $wp_query->is_main_query() /* * Any image before the loop, but after the header has started should not be lazy-loaded, * except when the footer has already started which can happen when the current template * does not include any loop. */ && did_action( 'get_header' ) && ! did_action( 'get_footer' ) ) { // Increase media count if there are images in header above a certian minimum size threshold. $maybe_increase_content_media_count(); return $postprocess( $loading_attrs, true ); } } /* * The first elements in 'the_content' or 'the_post_thumbnail' should not be lazy-loaded, * as they are likely above the fold. Shortcodes are processed after content images, so if * thresholds haven't already been met, apply the same logic to those as well. */ if ( 'the_content' === $context || 'the_post_thumbnail' === $context || 'do_shortcode' === $context ) { // Only elements within the main query loop have special handling. if ( is_admin() || ! in_the_loop() || ! is_main_query() ) { $loading_attrs['loading'] = 'lazy'; return $postprocess( $loading_attrs, false ); } // Increase the counter since this is a main query content element. $content_media_count = wp_increase_content_media_count(); // If the count so far is below the threshold, `loading` attribute is omitted. if ( $content_media_count <= wp_omit_loading_attr_threshold() ) { // The first largest image will still get `fetchpriority='high'`. return $postprocess( $loading_attrs, true ); } } // Lazy-load by default for any unknown context. $loading_attrs['loading'] = 'lazy'; return $postprocess( $loading_attrs, false ); } /** * Gets the threshold for how many of the first content media elements to not lazy-load. * * This function runs the {@see 'wp_omit_loading_attr_threshold'} filter, which uses a default threshold value of 3. * The filter is only run once per page load, unless the `$force` parameter is used. * * @since 5.9.0 * * @param bool $force Optional. If set to true, the filter will be (re-)applied even if it already has been before. * Default false. * @return int The number of content media elements to not lazy-load. */ function wp_omit_loading_attr_threshold( $force = false ) { static $omit_threshold; // This function may be called multiple times. Run the filter only once per page load. if ( ! isset( $omit_threshold ) || $force ) { /** * Filters the threshold for how many of the first content media elements to not lazy-load. * * For these first content media elements, the `loading` attribute will be omitted. By default, this is the case * for only the very first content media element. * * @since 5.9.0 * @since 6.3.0 The default threshold was changed from 1 to 3. * * @param int $omit_threshold The number of media elements where the `loading` attribute will not be added. Default 3. */ $omit_threshold = apply_filters( 'wp_omit_loading_attr_threshold', 3 ); } return $omit_threshold; } /** * Increases an internal content media count variable. * * @since 5.9.0 * @access private * * @param int $amount Optional. Amount to increase by. Default 1. * @return int The latest content media count, after the increase. */ function wp_increase_content_media_count( $amount = 1 ) { static $content_media_count = 0; $content_media_count += $amount; return $content_media_count; } /** * Determines whether to add `fetchpriority='high'` to loading attributes. * * @since 6.3.0 * @access private * * @param array $loading_attrs Array of the loading optimization attributes for the element. * @param string $tag_name The tag name. * @param array $attr Array of the attributes for the element. * @return array Updated loading optimization attributes for the element. */ function wp_maybe_add_fetchpriority_high_attr( $loading_attrs, $tag_name, $attr ) { // For now, adding `fetchpriority="high"` is only supported for images. if ( 'img' !== $tag_name ) { return $loading_attrs; } if ( isset( $attr['fetchpriority'] ) ) { /* * While any `fetchpriority` value could be set in `$loading_attrs`, * for consistency we only do it for `fetchpriority="high"` since that * is the only possible value that WordPress core would apply on its * own. */ if ( 'high' === $attr['fetchpriority'] ) { $loading_attrs['fetchpriority'] = 'high'; wp_high_priority_element_flag( false ); } return $loading_attrs; } // Lazy-loading and `fetchpriority="high"` are mutually exclusive. if ( isset( $loading_attrs['loading'] ) && 'lazy' === $loading_attrs['loading'] ) { return $loading_attrs; } if ( ! wp_high_priority_element_flag() ) { return $loading_attrs; } /** * Filters the minimum square-pixels threshold for an image to be eligible as the high-priority image. * * @since 6.3.0 * * @param int $threshold Minimum square-pixels threshold. Default 50000. */ $wp_min_priority_img_pixels = apply_filters( 'wp_min_priority_img_pixels', 50000 ); if ( $wp_min_priority_img_pixels <= $attr['width'] * $attr['height'] ) { $loading_attrs['fetchpriority'] = 'high'; wp_high_priority_element_flag( false ); } return $loading_attrs; } /** * Accesses a flag that indicates if an element is a possible candidate for `fetchpriority='high'`. * * @since 6.3.0 * @access private * * @param bool $value Optional. Used to change the static variable. Default null. * @return bool Returns true if high-priority element was marked already, otherwise false. */ function wp_high_priority_element_flag( $value = null ) { static $high_priority_element = true; if ( is_bool( $value ) ) { $high_priority_element = $value; } return $high_priority_element; } lity.php' ), 'Automattic\\WooCommerce\\Blocks\\Templates\\ProductAttributeTemplate' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/Templates/ProductAttributeTemplate.php' ), 'Automattic\\WooCommerce\\Blocks\\Templates\\MiniCartTemplate' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/Templates/MiniCartTemplate.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypesController' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypesController.php' ), 'Automattic\\WooCommerce\\Blocks\\Domain\\Package' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Package.php' ), 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\GoogleAnalytics' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/GoogleAnalytics.php' ), 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\CreateAccount' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/CreateAccount.php' ), 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\FeatureGating' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/FeatureGating.php' ), 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\Email\\CustomerNewAccount' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/Email/CustomerNewAccount.php' ), 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\DraftOrders' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/DraftOrders.php' ), 'Automattic\\WooCommerce\\Blocks\\Domain\\Bootstrap' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Bootstrap.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ActiveFilters' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ActiveFilters.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductBestSellers' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductBestSellers.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AbstractDynamicBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AbstractDynamicBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductsByAttribute' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductsByAttribute.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\FilterWrapper' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/FilterWrapper.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderSummaryCouponFormBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutOrderSummaryCouponFormBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AbstractProductGrid' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AbstractProductGrid.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductTag' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductTag.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartOrderSummaryCouponFormBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartOrderSummaryCouponFormBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AttributeFilter' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AttributeFilter.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartItemsBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartItemsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\FeaturedProduct' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/FeaturedProduct.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductSummary' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductSummary.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\HandpickedProducts' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/HandpickedProducts.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProceedToCheckoutBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProceedToCheckoutBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AbstractBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AbstractBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutBillingAddressBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutBillingAddressBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AllReviews' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AllReviews.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartOrderSummaryHeadingBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartOrderSummaryHeadingBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartOrderSummarySubtotalBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartOrderSummarySubtotalBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartOrderSummaryBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartOrderSummaryBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartOrderSummaryShippingBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartOrderSummaryShippingBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartExpressPaymentBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartExpressPaymentBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ClassicTemplate' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ClassicTemplate.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\Checkout' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/Checkout.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductSKU' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductSKU.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartLineItemsBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartLineItemsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductButton' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductButton.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductTopRated' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductTopRated.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderSummaryFeeBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutOrderSummaryFeeBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\FeaturedCategory' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/FeaturedCategory.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartCrossSellsProductsBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartCrossSellsProductsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductTitle' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductTitle.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AbstractInnerBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AbstractInnerBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductStockIndicator' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductStockIndicator.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutTermsBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutTermsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartCrossSellsBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartCrossSellsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\EmptyCartBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/EmptyCartBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductCategoryList' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductCategoryList.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductAddToCart' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductAddToCart.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\MiniCartContents' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/MiniCartContents.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartOrderSummaryTaxesBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartOrderSummaryTaxesBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderSummaryDiscountBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutOrderSummaryDiscountBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ReviewsByProduct' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ReviewsByProduct.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductCategories' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductCategories.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\SingleProduct' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/SingleProduct.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartAcceptedPaymentMethodsBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartAcceptedPaymentMethodsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartTotalsBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartTotalsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\FilledCartBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/FilledCartBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderSummaryShippingBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutOrderSummaryShippingBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductNew' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductNew.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductCategory' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductCategory.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartOrderSummaryDiscountBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartOrderSummaryDiscountBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductSearch' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductSearch.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutActionsBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutActionsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderSummarySubtotalBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutOrderSummarySubtotalBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutTotalsBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutTotalsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductQuery' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductQuery.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderSummaryBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutOrderSummaryBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\PriceFilter' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/PriceFilter.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutFieldsBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutFieldsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductOnSale' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductOnSale.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutContactInformationBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutContactInformationBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductImage' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductImage.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AllProducts' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AllProducts.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AtomicBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AtomicBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\FeaturedItem' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/FeaturedItem.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutShippingAddressBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutShippingAddressBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderNoteBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutOrderNoteBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ReviewsByCategory' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ReviewsByCategory.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\Cart' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/Cart.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductSaleBadge' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductSaleBadge.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutShippingMethodsBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutShippingMethodsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\RatingFilter' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/RatingFilter.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderSummaryTaxesBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutOrderSummaryTaxesBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\MiniCart' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/MiniCart.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutOrderSummaryCartItemsBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutOrderSummaryCartItemsBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductTagList' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductTagList.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\StockFilter' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/StockFilter.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductPrice' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductPrice.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductRating' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductRating.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutExpressPaymentBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutExpressPaymentBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CartOrderSummaryFeeBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CartOrderSummaryFeeBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutPaymentBlock' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutPaymentBlock.php' ), 'Automattic\\WooCommerce\\Blocks\\Assets\\Api' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/Assets/Api.php' ), 'Automattic\\WooCommerce\\Blocks\\Assets\\AssetDataRegistry' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/Assets/AssetDataRegistry.php' ), 'Automattic\\WooCommerce\\Blocks\\Installer' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/Installer.php' ), 'Automattic\\WooCommerce\\Blocks\\AssetsController' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/AssetsController.php' ), 'Automattic\\WooCommerce\\Blocks\\Assets' => array( 'version' => '9.1.5.0', 'path' => $baseDir . '/packages/woocommerce-blocks/src/Assets.php' ), 'Automattic\\WooCommerce\\Packages' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Packages.php' ), 'Automattic\\WooCommerce\\Internal\\BatchProcessing\\BatchProcessorInterface' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/BatchProcessing/BatchProcessorInterface.php' ), 'Automattic\\WooCommerce\\Internal\\BatchProcessing\\BatchProcessingController' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/BatchProcessing/BatchProcessingController.php' ), 'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\StoredUrl' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/StoredUrl.php' ), 'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\Synchronize' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/Synchronize.php' ), 'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\Admin\\Table' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/Admin/Table.php' ), 'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\Admin\\SyncUI' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/Admin/SyncUI.php' ), 'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\Admin\\UI' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/Admin/UI.php' ), 'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\Register' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/Register.php' ), 'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\ApprovedDirectoriesException' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/ApprovedDirectoriesException.php' ), 'Automattic\\WooCommerce\\Internal\\RestockRefundedItemsAdjuster' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/RestockRefundedItemsAdjuster.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Marketing' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Marketing.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\SettingsNavigationFeature' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/SettingsNavigationFeature.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Coupons' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Coupons.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Loader' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Loader.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Analytics' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Analytics.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\FeaturePlugin' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/FeaturePlugin.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\WCAdminUser' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/WCAdminUser.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Events' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Events.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\CustomerEffortScoreTracks' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/CustomerEffortScoreTracks.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\WcPayWelcomePage' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/WcPayWelcomePage.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Settings' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Settings.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\CouponPageMoved' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/CouponPageMoved.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\PaymentsRemindMeLater' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/PaymentsRemindMeLater.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\ChoosingTheme' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/ChoosingTheme.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\WooSubscriptionsNotes' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/WooSubscriptionsNotes.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\NewSalesRecord' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/NewSalesRecord.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\WooCommerceSubscriptions' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/WooCommerceSubscriptions.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\MagentoMigration' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/MagentoMigration.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\EmailNotification' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/EmailNotification.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\TestCheckout' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/TestCheckout.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\TrackingOptIn' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/TrackingOptIn.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\GivingFeedbackNotes' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/GivingFeedbackNotes.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\ManageOrdersOnTheGo' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/ManageOrdersOnTheGo.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\FirstProduct' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/FirstProduct.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\OnboardingPayments' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/OnboardingPayments.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\PerformanceOnMobile' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/PerformanceOnMobile.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\CustomizingProductCatalog' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/CustomizingProductCatalog.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\PersonalizeStore' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/PersonalizeStore.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\MigrateFromShopify' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/MigrateFromShopify.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\UnsecuredReportFiles' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/UnsecuredReportFiles.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\OrderMilestones' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/OrderMilestones.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\RealTimeOrderAlerts' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/RealTimeOrderAlerts.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\EUVATNumber' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/EUVATNumber.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\MarketingJetpack' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/MarketingJetpack.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\MerchantEmailNotifications' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/MerchantEmailNotifications.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\OnlineClothingStore' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/OnlineClothingStore.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\WooCommercePayments' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/WooCommercePayments.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\SellingOnlineCourses' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/SellingOnlineCourses.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\InstallJPAndWCSPlugins' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/InstallJPAndWCSPlugins.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\AddFirstProduct' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/AddFirstProduct.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\PaymentsMoreInfoNeeded' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/PaymentsMoreInfoNeeded.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\CustomizeStoreWithBlocks' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/CustomizeStoreWithBlocks.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\LaunchChecklist' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/LaunchChecklist.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\MobileApp' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/MobileApp.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\EditProductsOnTheMove' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Notes/EditProductsOnTheMove.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\MobileAppBanner' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/MobileAppBanner.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\RemoteInboxNotifications' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/RemoteInboxNotifications.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\WCAdminAssets' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/WCAdminAssets.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\WCAdminSharedSettings' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/WCAdminSharedSettings.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\CouponsMovedTrait' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/CouponsMovedTrait.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Survey' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Survey.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\RemoteFreeExtensions\\Init' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/RemoteFreeExtensions/Init.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\RemoteFreeExtensions\\EvaluateExtension' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/RemoteFreeExtensions/EvaluateExtension.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\RemoteFreeExtensions\\RemoteFreeExtensionsDataSourcePoller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/RemoteFreeExtensions/RemoteFreeExtensionsDataSourcePoller.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\RemoteFreeExtensions\\DefaultFreeExtensions' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/RemoteFreeExtensions/DefaultFreeExtensions.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Orders\\Edit' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Orders/Edit.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Orders\\MetaBoxes\\CustomMetaBox' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Orders/MetaBoxes/CustomMetaBox.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Orders\\ListTable' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Orders/ListTable.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Orders\\COTRedirectionController' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Orders/COTRedirectionController.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Orders\\PageController' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Orders/PageController.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Orders\\PostsRedirectionController' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Orders/PostsRedirectionController.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\SystemStatusReport' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/SystemStatusReport.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Homescreen' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Homescreen.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\CategoryLookup' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/CategoryLookup.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Schedulers\\CustomersScheduler' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Schedulers/CustomersScheduler.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Schedulers\\OrdersScheduler' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Schedulers/OrdersScheduler.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Schedulers\\ImportInterface' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Schedulers/ImportInterface.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Schedulers\\ImportScheduler' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Schedulers/ImportScheduler.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Schedulers\\MailchimpScheduler' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Schedulers/MailchimpScheduler.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingThemes' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingThemes.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingIndustries' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingIndustries.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingProfile' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingProfile.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingMailchimp' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingMailchimp.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingSync' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingSync.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingSetupWizard' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingSetupWizard.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingHelper' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingHelper.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingJetpack' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingJetpack.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingProducts' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingProducts.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\Onboarding' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Onboarding/Onboarding.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\ProductReviews\\ReviewsListTable' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/ProductReviews/ReviewsListTable.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\ProductReviews\\Reviews' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/ProductReviews/Reviews.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\ProductReviews\\ReviewsCommentsOverrides' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/ProductReviews/ReviewsCommentsOverrides.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\ProductReviews\\ReviewsUtil' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/ProductReviews/ReviewsUtil.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\Translations' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/Translations.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\ShippingLabelBannerDisplayRules' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/ShippingLabelBannerDisplayRules.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\ActivityPanels' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/ActivityPanels.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\WCPayPromotion\\Init' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/WCPayPromotion/Init.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\WCPayPromotion\\WCPaymentGatewayPreInstallWCPayPromotion' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/WCPayPromotion/WCPaymentGatewayPreInstallWCPayPromotion.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\WCPayPromotion\\WCPayPromotionDataSourcePoller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/WCPayPromotion/WCPayPromotionDataSourcePoller.php' ), 'Automattic\\WooCommerce\\Internal\\Admin\\ShippingLabelBanner' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Admin/ShippingLabelBanner.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\Definition' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/Definition.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\AssignDefaultCategoryServiceProvider' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/AssignDefaultCategoryServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ProductAttributesLookupServiceProvider' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ProductAttributesLookupServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\DownloadPermissionsAdjusterServiceProvider' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/DownloadPermissionsAdjusterServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\OrderAdminServiceProvider' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/OrderAdminServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\OptionSanitizerServiceProvider' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/OptionSanitizerServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\UtilsClassesServiceProvider' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/UtilsClassesServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\RestockRefundedItemsAdjusterServiceProvider' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/RestockRefundedItemsAdjusterServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ProxiesServiceProvider' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ProxiesServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\COTMigrationServiceProvider' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/COTMigrationServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\OrderMetaBoxServiceProvider' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/OrderMetaBoxServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ProductReviewsServiceProvider' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ProductReviewsServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\FeaturesServiceProvider' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/FeaturesServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\OrdersDataStoreServiceProvider' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/OrdersDataStoreServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\BatchProcessingServiceProvider' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/BatchProcessingServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\OrdersControllersServiceProvider' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/OrdersControllersServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ObjectCacheServiceProvider' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ObjectCacheServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ProductDownloadsServiceProvider' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ProductDownloadsServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ContainerException' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ContainerException.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ExtendedContainer' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/ExtendedContainer.php' ), 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\AbstractServiceProvider' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DependencyManagement/AbstractServiceProvider.php' ), 'Automattic\\WooCommerce\\Internal\\Orders\\TaxesController' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Orders/TaxesController.php' ), 'Automattic\\WooCommerce\\Internal\\Orders\\MobileMessagingHandler' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Orders/MobileMessagingHandler.php' ), 'Automattic\\WooCommerce\\Internal\\Orders\\CouponsController' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Orders/CouponsController.php' ), 'Automattic\\WooCommerce\\Internal\\Orders\\IppFunctions' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Orders/IppFunctions.php' ), 'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\DataSynchronizer' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DataStores/Orders/DataSynchronizer.php' ), 'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\OrdersTableMetaQuery' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DataStores/Orders/OrdersTableMetaQuery.php' ), 'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\OrdersTableDataStoreMeta' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DataStores/Orders/OrdersTableDataStoreMeta.php' ), 'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\CustomOrdersTableController' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DataStores/Orders/CustomOrdersTableController.php' ), 'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\OrdersTableFieldQuery' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DataStores/Orders/OrdersTableFieldQuery.php' ), 'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\OrdersTableDataStore' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DataStores/Orders/OrdersTableDataStore.php' ), 'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\OrdersTableSearchQuery' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DataStores/Orders/OrdersTableSearchQuery.php' ), 'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\OrdersTableRefundDataStore' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DataStores/Orders/OrdersTableRefundDataStore.php' ), 'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\OrdersTableQuery' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DataStores/Orders/OrdersTableQuery.php' ), 'Automattic\\WooCommerce\\Internal\\DataStores\\CustomMetaDataStore' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DataStores/CustomMetaDataStore.php' ), 'Automattic\\WooCommerce\\Internal\\DownloadPermissionsAdjuster' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/DownloadPermissionsAdjuster.php' ), 'Automattic\\WooCommerce\\Internal\\WCCom\\ConnectionHelper' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/WCCom/ConnectionHelper.php' ), 'Automattic\\WooCommerce\\Internal\\Features\\FeaturesController' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Features/FeaturesController.php' ), 'Automattic\\WooCommerce\\Internal\\RestApiUtil' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/RestApiUtil.php' ), 'Automattic\\WooCommerce\\Internal\\AssignDefaultCategory' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/AssignDefaultCategory.php' ), 'Automattic\\WooCommerce\\Internal\\Utilities\\Users' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Utilities/Users.php' ), 'Automattic\\WooCommerce\\Internal\\Utilities\\DatabaseUtil' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Utilities/DatabaseUtil.php' ), 'Automattic\\WooCommerce\\Internal\\Utilities\\URL' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Utilities/URL.php' ), 'Automattic\\WooCommerce\\Internal\\Utilities\\URLException' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Utilities/URLException.php' ), 'Automattic\\WooCommerce\\Internal\\Utilities\\BlocksUtil' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Utilities/BlocksUtil.php' ), 'Automattic\\WooCommerce\\Internal\\Utilities\\COTMigrationUtil' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Utilities/COTMigrationUtil.php' ), 'Automattic\\WooCommerce\\Internal\\Utilities\\HtmlSanitizer' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Utilities/HtmlSanitizer.php' ), 'Automattic\\WooCommerce\\Internal\\Settings\\OptionSanitizer' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Settings/OptionSanitizer.php' ), 'Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\DataRegenerator' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/ProductAttributesLookup/DataRegenerator.php' ), 'Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\LookupDataStore' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/ProductAttributesLookup/LookupDataStore.php' ), 'Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\Filterer' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/ProductAttributesLookup/Filterer.php' ), 'Automattic\\WooCommerce\\Internal\\Traits\\AccessiblePrivateMethods' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Internal/Traits/AccessiblePrivateMethods.php' ), 'Automattic\\WooCommerce\\Container' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Container.php' ), 'Automattic\\WooCommerce\\Proxies\\ActionsProxy' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Proxies/ActionsProxy.php' ), 'Automattic\\WooCommerce\\Proxies\\LegacyProxy' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Proxies/LegacyProxy.php' ), 'Automattic\\WooCommerce\\Admin\\Loader' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Loader.php' ), 'Automattic\\WooCommerce\\Admin\\PluginsHelper' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/PluginsHelper.php' ), 'Automattic\\WooCommerce\\Admin\\FeaturePlugin' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/FeaturePlugin.php' ), 'Automattic\\WooCommerce\\Admin\\ReportCSVExporter' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/ReportCSVExporter.php' ), 'Automattic\\WooCommerce\\Admin\\ReportExporter' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/ReportExporter.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\Note' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/Note.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\Notes' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/Notes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\DataStore' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\NoteTraits' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/NoteTraits.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\NotesUnavailableException' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/NotesUnavailableException.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Note' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Coupon_Page_Moved' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Customize_Store_With_Blocks' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Edit_Products_On_The_Move' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_EU_VAT_Number' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Facebook_Marketing_Expert' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_First_Product' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Giving_Feedback_Notes' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Install_JP_And_WCS_Plugins' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Launch_Checklist' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Migrate_From_Shopify' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Mobile_App' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_New_Sales_Record' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Onboarding_Email_Marketing' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Onboarding_Payments' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Online_Clothing_Store' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Order_Milestones' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Performance_On_Mobile' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Personalize_Store' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Real_Time_Order_Alerts' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Selling_Online_Courses' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Test_Checkout' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Tracking_Opt_In' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Woo_Subscriptions_Notes' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_WooCommerce_Payments' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_WooCommerce_Subscriptions' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php' ), 'Automattic\\WooCommerce\\Admin\\Marketing\\InstalledExtensions' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Marketing/InstalledExtensions.php' ), 'Automattic\\WooCommerce\\Admin\\PluginsInstaller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/PluginsInstaller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Taxes' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Taxes.php' ), 'Automattic\\WooCommerce\\Admin\\API\\OnboardingThemes' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/OnboardingThemes.php' ), 'Automattic\\WooCommerce\\Admin\\API\\SettingOptions' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/SettingOptions.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Marketing' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Marketing.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Coupons' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Coupons.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Options' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Options.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Themes' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Themes.php' ), 'Automattic\\WooCommerce\\Admin\\API\\OnboardingFreeExtensions' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/OnboardingFreeExtensions.php' ), 'Automattic\\WooCommerce\\Admin\\API\\NoteActions' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/NoteActions.php' ), 'Automattic\\WooCommerce\\Admin\\API\\ProductsLowInStock' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/ProductsLowInStock.php' ), 'Automattic\\WooCommerce\\Admin\\API\\ProductReviews' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/ProductReviews.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Init' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Init.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Experiments' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Experiments.php' ), 'Automattic\\WooCommerce\\Admin\\API\\OnboardingProfile' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/OnboardingProfile.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Products' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Products.php' ), 'Automattic\\WooCommerce\\Admin\\API\\MarketingOverview' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/MarketingOverview.php' ), 'Automattic\\WooCommerce\\Admin\\API\\ProductVariations' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/ProductVariations.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Notes' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Notes.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Orders' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Orders.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Data' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Data.php' ), 'Automattic\\WooCommerce\\Admin\\API\\PaymentGatewaySuggestions' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/PaymentGatewaySuggestions.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Features' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Features.php' ), 'Automattic\\WooCommerce\\Admin\\API\\ProductCategories' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/ProductCategories.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Stats\\Query' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Stock/Stats/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Stats\\DataStore' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Stock/Stats/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Stats\\Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Stock/Stats/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Stock/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\PerformanceIndicators\\Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/PerformanceIndicators/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\SqlQuery' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/SqlQuery.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Segmenter' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Segmenter.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\Query' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Customers/Stats/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\DataStore' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Customers/Stats/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Customers/Stats/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Query' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Customers/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\DataStore' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Customers/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Customers/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\Segmenter' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Taxes/Stats/Segmenter.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\Query' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Taxes/Stats/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\DataStore' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Taxes/Stats/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Taxes/Stats/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Query' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Taxes/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\DataStore' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Taxes/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Taxes/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\ExportableTraits' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/ExportableTraits.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Segmenter' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Coupons/Stats/Segmenter.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Query' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Coupons/Stats/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\DataStore' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Coupons/Stats/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Coupons/Stats/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Query' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Coupons/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\DataStore' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Coupons/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Coupons/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Export\\Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Export/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Query' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Revenue\\Stats\\Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Revenue/Stats/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Revenue\\Query' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Revenue/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Cache' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Cache.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Import\\Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Import/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\DataStore' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\Segmenter' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Orders/Stats/Segmenter.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\Query' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Orders/Stats/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\DataStore' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Orders/Stats/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Orders/Stats/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Query' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Orders/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\DataStore' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Orders/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Orders/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Stats\\Segmenter' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Variations/Stats/Segmenter.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Stats\\Query' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Variations/Stats/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Stats\\DataStore' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Variations/Stats/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Stats\\Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Variations/Stats/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Query' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Variations/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\DataStore' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Variations/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Variations/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\DataStoreInterface' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/DataStoreInterface.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\ParameterException' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/ParameterException.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\Segmenter' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Products/Stats/Segmenter.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\Query' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Products/Stats/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\DataStore' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Products/Stats/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Products/Stats/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Query' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Products/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\DataStore' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Products/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Products/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\TimeInterval' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/TimeInterval.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Files\\Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Downloads/Files/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Stats\\Query' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Downloads/Stats/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Stats\\DataStore' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Downloads/Stats/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Stats\\Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Downloads/Stats/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Query' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Downloads/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\DataStore' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Downloads/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Downloads/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\ExportableInterface' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/ExportableInterface.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\Query' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Categories/Query.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\DataStore' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Categories/DataStore.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Reports/Categories/Controller.php' ), 'Automattic\\WooCommerce\\Admin\\API\\ProductAttributeTerms' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/ProductAttributeTerms.php' ), 'Automattic\\WooCommerce\\Admin\\API\\NavigationFavorites' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/NavigationFavorites.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Leaderboards' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Leaderboards.php' ), 'Automattic\\WooCommerce\\Admin\\API\\DataCountries' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/DataCountries.php' ), 'Automattic\\WooCommerce\\Admin\\API\\ProductAttributes' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/ProductAttributes.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Plugins' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Plugins.php' ), 'Automattic\\WooCommerce\\Admin\\API\\CustomAttributeTraits' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/CustomAttributeTraits.php' ), 'Automattic\\WooCommerce\\Admin\\API\\DataDownloadIPs' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/DataDownloadIPs.php' ), 'Automattic\\WooCommerce\\Admin\\API\\MobileAppMagicLink' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/MobileAppMagicLink.php' ), 'Automattic\\WooCommerce\\Admin\\API\\Customers' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/Customers.php' ), 'Automattic\\WooCommerce\\Admin\\API\\OnboardingProductTypes' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/OnboardingProductTypes.php' ), 'Automattic\\WooCommerce\\Admin\\API\\OnboardingTasks' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/API/OnboardingTasks.php' ), 'Automattic\\WooCommerce\\Admin\\WCAdminHelper' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/WCAdminHelper.php' ), 'Automattic\\WooCommerce\\Admin\\Overrides\\Order' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Overrides/Order.php' ), 'Automattic\\WooCommerce\\Admin\\Overrides\\OrderTraits' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Overrides/OrderTraits.php' ), 'Automattic\\WooCommerce\\Admin\\Overrides\\OrderRefund' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Overrides/OrderRefund.php' ), 'Automattic\\WooCommerce\\Admin\\Overrides\\ThemeUpgraderSkin' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Overrides/ThemeUpgraderSkin.php' ), 'Automattic\\WooCommerce\\Admin\\Overrides\\ThemeUpgrader' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Overrides/ThemeUpgrader.php' ), 'Automattic\\WooCommerce\\Admin\\Composer\\Package' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Composer/Package.php' ), 'Automattic\\WooCommerce\\Admin\\ReportsSync' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/ReportsSync.php' ), 'Automattic\\WooCommerce\\Admin\\DeprecatedClassFacade' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/DeprecatedClassFacade.php' ), 'Automattic\\WooCommerce\\Admin\\PluginsProvider\\PluginsProvider' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/PluginsProvider/PluginsProvider.php' ), 'Automattic\\WooCommerce\\Admin\\PluginsProvider\\PluginsProviderInterface' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/PluginsProvider/PluginsProviderInterface.php' ), 'Automattic\\WooCommerce\\Admin\\DataSourcePoller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/DataSourcePoller.php' ), 'Automattic\\WooCommerce\\Admin\\PageController' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/PageController.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\MultichannelMarketing\\Init' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/MultichannelMarketing/Init.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Init' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/Navigation/Init.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Menu' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/Navigation/Menu.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\CoreMenu' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/Navigation/CoreMenu.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Favorites' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/Navigation/Favorites.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Screen' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/Navigation/Screen.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\EvaluateSuggestion' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/PaymentGatewaySuggestions/EvaluateSuggestion.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\Init' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/PaymentGatewaySuggestions/Init.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\PaymentGatewaySuggestionsDataSourcePoller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/PaymentGatewaySuggestions/PaymentGatewaySuggestionsDataSourcePoller.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\DefaultPaymentGateways' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\PaymentGatewaysController' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/PaymentGatewaySuggestions/PaymentGatewaysController.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Features' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/Features.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Init' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Init.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\TaskList' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/TaskList.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\TaskListSection' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/TaskListSection.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\DeprecatedOptions' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/DeprecatedOptions.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Marketing' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Marketing.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Payments' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Payments.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Products' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Products.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Shipping' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Shipping.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\StoreDetails' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/StoreDetails.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Tax' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Tax.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\AdditionalPayments' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/AdditionalPayments.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\ExperimentalShippingRecommendation' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/ExperimentalShippingRecommendation.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\GetMobileApp' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/GetMobileApp.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\ReviewShippingOptions' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/ReviewShippingOptions.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\StoreCreation' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/StoreCreation.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\WooCommercePayments' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/WooCommercePayments.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Appearance' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Appearance.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Purchase' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Purchase.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\TourInAppMarketplace' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/TourInAppMarketplace.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\DeprecatedExtendedTask' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/DeprecatedExtendedTask.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\TaskTraits' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/TaskTraits.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\TaskLists' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/TaskLists.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Task' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Task.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\NewProductManagementExperience' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/NewProductManagementExperience.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\Onboarding' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/Onboarding.php' ), 'Automattic\\WooCommerce\\Admin\\Features\\TransientNotices' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Features/TransientNotices.php' ), 'Automattic\\WooCommerce\\Admin\\Schedulers\\SchedulerTraits' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/Schedulers/SchedulerTraits.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\WCAdminActiveForProvider' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/WCAdminActiveForProvider.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\EvaluationLogger' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/EvaluationLogger.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\RemoteInboxNotificationsEngine' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/RemoteInboxNotificationsEngine.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\BaseLocationCountryRuleProcessor' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/BaseLocationCountryRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\SpecRunner' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/SpecRunner.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\ProductCountRuleProcessor' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/ProductCountRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\IsEcommerceRuleProcessor' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/IsEcommerceRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\EvaluateAndGetStatus' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/EvaluateAndGetStatus.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OrderCountRuleProcessor' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/OrderCountRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\BaseLocationStateRuleProcessor' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/BaseLocationStateRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PublishAfterTimeRuleProcessor' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/PublishAfterTimeRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OptionRuleProcessor' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/OptionRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PluginsActivatedRuleProcessor' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/PluginsActivatedRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\TransformerService' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/TransformerService.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\RuleProcessorInterface' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/RuleProcessorInterface.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OrdersProvider' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/OrdersProvider.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PublishBeforeTimeRuleProcessor' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/PublishBeforeTimeRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\DataSourcePoller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/DataSourcePoller.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\ComparisonOperation' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/ComparisonOperation.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\TransformerInterface' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/TransformerInterface.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\StoredStateRuleProcessor' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/StoredStateRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PluginVersionRuleProcessor' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/PluginVersionRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArraySearch' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/ArraySearch.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayColumn' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/ArrayColumn.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\Count' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/Count.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayFlatten' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/ArrayFlatten.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayValues' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/ArrayValues.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayKeys' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/ArrayKeys.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\DotNotation' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/DotNotation.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OnboardingProfileRuleProcessor' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/OnboardingProfileRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\WooCommerceAdminUpdatedRuleProcessor' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/WooCommerceAdminUpdatedRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\GetRuleProcessor' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/GetRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OrRuleProcessor' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/OrRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\NotRuleProcessor' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/NotRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\TotalPaymentsVolumeProcessor' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/TotalPaymentsVolumeProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\NoteStatusRuleProcessor' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/NoteStatusRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\FailRuleProcessor' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/FailRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\StoredStateSetupForProducts' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/StoredStateSetupForProducts.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\RuleEvaluator' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/RuleEvaluator.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\WCAdminActiveForRuleProcessor' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/WCAdminActiveForRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PassRuleProcessor' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/PassRuleProcessor.php' ), 'Automattic\\WooCommerce\\Admin\\DateTimeProvider\\CurrentDateTimeProvider' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/DateTimeProvider/CurrentDateTimeProvider.php' ), 'Automattic\\WooCommerce\\Admin\\DateTimeProvider\\DateTimeProviderInterface' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/DateTimeProvider/DateTimeProviderInterface.php' ), 'Automattic\\WooCommerce\\Admin\\ReportCSVEmail' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Admin/ReportCSVEmail.php' ), 'Automattic\\WooCommerce\\Database\\Migrations\\TableMigrator' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Database/Migrations/TableMigrator.php' ), 'Automattic\\WooCommerce\\DataBase\\Migrations\\CustomOrderTable\\CLIRunner' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/CLIRunner.php' ), 'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\PostToOrderOpTableMigrator' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/PostToOrderOpTableMigrator.php' ), 'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\PostToOrderAddressTableMigrator' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/PostToOrderAddressTableMigrator.php' ), 'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\PostsToOrdersMigrationController' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/PostsToOrdersMigrationController.php' ), 'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\PostToOrderTableMigrator' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/PostToOrderTableMigrator.php' ), 'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\PostMetaToOrderMetaMigrator' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/PostMetaToOrderMetaMigrator.php' ), 'Automattic\\WooCommerce\\Database\\Migrations\\MetaToCustomTableMigrator' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Database/Migrations/MetaToCustomTableMigrator.php' ), 'Automattic\\WooCommerce\\Database\\Migrations\\MigrationHelper' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Database/Migrations/MigrationHelper.php' ), 'Automattic\\WooCommerce\\Database\\Migrations\\MetaToMetaTableMigrator' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Database/Migrations/MetaToMetaTableMigrator.php' ), 'Automattic\\WooCommerce\\Checkout\\Helpers\\ReserveStockException' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Checkout/Helpers/ReserveStockException.php' ), 'Automattic\\WooCommerce\\Checkout\\Helpers\\ReserveStock' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Checkout/Helpers/ReserveStock.php' ), 'Automattic\\WooCommerce\\Autoloader' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Autoloader.php' ), 'Automattic\\WooCommerce\\Utilities\\OrderUtil' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Utilities/OrderUtil.php' ), 'Automattic\\WooCommerce\\Utilities\\NumberUtil' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Utilities/NumberUtil.php' ), 'Automattic\\WooCommerce\\Utilities\\FeaturesUtil' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Utilities/FeaturesUtil.php' ), 'Automattic\\WooCommerce\\Utilities\\PluginUtil' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Utilities/PluginUtil.php' ), 'Automattic\\WooCommerce\\Utilities\\ArrayUtil' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Utilities/ArrayUtil.php' ), 'Automattic\\WooCommerce\\Utilities\\StringUtil' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Utilities/StringUtil.php' ), 'Automattic\\WooCommerce\\Caching\\CacheException' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Caching/CacheException.php' ), 'Automattic\\WooCommerce\\Caching\\ObjectCache' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Caching/ObjectCache.php' ), 'Automattic\\WooCommerce\\Caching\\WpCacheEngine' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Caching/WpCacheEngine.php' ), 'Automattic\\WooCommerce\\Caching\\CacheEngine' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/src/Caching/CacheEngine.php' ), 'Hook_Manager' => array( 'version' => '2.10.1.0', 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-hook-manager.php' ), 'Automattic\\Jetpack\\Autoloader\\ManifestGenerator' => array( 'version' => '2.10.1.0', 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/ManifestGenerator.php' ), 'Plugins_Handler' => array( 'version' => '2.10.1.0', 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-plugins-handler.php' ), 'Autoloader_Handler' => array( 'version' => '2.10.1.0', 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-autoloader-handler.php' ), 'Plugin_Locator' => array( 'version' => '2.10.1.0', 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-plugin-locator.php' ), 'Autoloader' => array( 'version' => '2.10.1.0', 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-autoloader.php' ), 'Shutdown_Handler' => array( 'version' => '2.10.1.0', 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-shutdown-handler.php' ), 'Version_Selector' => array( 'version' => '2.10.1.0', 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-version-selector.php' ), 'Latest_Autoloader_Guard' => array( 'version' => '2.10.1.0', 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-latest-autoloader-guard.php' ), 'Path_Processor' => array( 'version' => '2.10.1.0', 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-path-processor.php' ), 'Automattic\\Jetpack\\Autoloader\\AutoloadFileWriter' => array( 'version' => '2.10.1.0', 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadFileWriter.php' ), 'Version_Loader' => array( 'version' => '2.10.1.0', 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-version-loader.php' ), 'PHP_Autoloader' => array( 'version' => '2.10.1.0', 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-php-autoloader.php' ), 'Autoloader_Locator' => array( 'version' => '2.10.1.0', 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-autoloader-locator.php' ), 'Automattic\\Jetpack\\Autoloader\\AutoloadProcessor' => array( 'version' => '2.10.1.0', 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadProcessor.php' ), 'Container' => array( 'version' => '2.10.1.0', 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-container.php' ), 'Manifest_Reader' => array( 'version' => '2.10.1.0', 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-manifest-reader.php' ), 'Automattic\\Jetpack\\Autoloader\\CustomAutoloaderPlugin' => array( 'version' => '2.10.1.0', 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/CustomAutoloaderPlugin.php' ), 'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => array( 'version' => '2.10.1.0', 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadGenerator.php' ), 'Automattic\\WooCommerce\\RestApi\\Server' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Server.php' ), 'Automattic\\WooCommerce\\RestApi\\Package' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Package.php' ), 'WC_REST_Webhook_Deliveries_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-webhook-deliveries-v2-controller.php' ), 'WC_REST_Products_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-products-v2-controller.php' ), 'WC_REST_Shipping_Zone_Locations_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zone-locations-v2-controller.php' ), 'WC_REST_Product_Categories_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-categories-v2-controller.php' ), 'WC_REST_Shipping_Zone_Methods_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zone-methods-v2-controller.php' ), 'WC_REST_Webhooks_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-webhooks-v2-controller.php' ), 'WC_REST_Shipping_Methods_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-methods-v2-controller.php' ), 'WC_REST_System_Status_Tools_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-system-status-tools-v2-controller.php' ), 'WC_REST_Product_Shipping_Classes_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-shipping-classes-v2-controller.php' ), 'WC_REST_Order_Refunds_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-order-refunds-v2-controller.php' ), 'WC_REST_Customer_Downloads_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-customer-downloads-v2-controller.php' ), 'WC_REST_Tax_Classes_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-tax-classes-v2-controller.php' ), 'WC_REST_Order_Notes_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-order-notes-v2-controller.php' ), 'WC_REST_Network_Orders_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-network-orders-v2-controller.php' ), 'WC_REST_Product_Variations_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-variations-v2-controller.php' ), 'WC_REST_System_Status_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-system-status-v2-controller.php' ), 'WC_REST_Product_Reviews_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-reviews-v2-controller.php' ), 'WC_REST_Settings_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-settings-v2-controller.php' ), 'WC_REST_Product_Attributes_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-attributes-v2-controller.php' ), 'WC_REST_Product_Attribute_Terms_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-attribute-terms-v2-controller.php' ), 'WC_REST_Shipping_Zones_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zones-v2-controller.php' ), 'WC_REST_Setting_Options_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-setting-options-v2-controller.php' ), 'WC_REST_Customers_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-customers-v2-controller.php' ), 'WC_REST_Report_Sales_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-report-sales-v2-controller.php' ), 'WC_REST_Payment_Gateways_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-payment-gateways-v2-controller.php' ), 'WC_REST_Product_Tags_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-tags-v2-controller.php' ), 'WC_REST_Report_Top_Sellers_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-report-top-sellers-v2-controller.php' ), 'WC_REST_Orders_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-orders-v2-controller.php' ), 'WC_REST_Taxes_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-taxes-v2-controller.php' ), 'WC_REST_Coupons_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-coupons-v2-controller.php' ), 'WC_REST_Reports_V2_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-reports-v2-controller.php' ), 'WC_REST_Orders_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-orders-controller.php' ), 'WC_REST_Report_Sales_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-sales-controller.php' ), 'WC_REST_Order_Notes_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-order-notes-controller.php' ), 'WC_REST_CRUD_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-crud-controller.php' ), 'WC_REST_Setting_Options_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-setting-options-controller.php' ), 'WC_REST_Product_Variations_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-variations-controller.php' ), 'WC_REST_Product_Attributes_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-attributes-controller.php' ), 'WC_REST_Shipping_Zone_Methods_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zone-methods-controller.php' ), 'WC_REST_Report_Products_Totals_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-products-totals-controller.php' ), 'WC_REST_Data_Currencies_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-currencies-controller.php' ), 'WC_REST_Data_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-controller.php' ), 'WC_REST_Shipping_Methods_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-methods-controller.php' ), 'WC_REST_System_Status_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-system-status-controller.php' ), 'WC_REST_Product_Attribute_Terms_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-attribute-terms-controller.php' ), 'WC_REST_Product_Categories_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-categories-controller.php' ), 'WC_REST_Taxes_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-taxes-controller.php' ), 'WC_REST_Customers_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-customers-controller.php' ), 'WC_REST_Shipping_Zones_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zones-controller.php' ), 'WC_REST_Terms_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-terms-controller.php' ), 'WC_REST_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-controller.php' ), 'WC_REST_Report_Reviews_Totals_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-reviews-totals-controller.php' ), 'WC_REST_Payment_Gateways_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-payment-gateways-controller.php' ), 'WC_REST_Posts_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-posts-controller.php' ), 'WC_REST_Report_Customers_Totals_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-customers-totals-controller.php' ), 'WC_REST_Tax_Classes_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-tax-classes-controller.php' ), 'WC_REST_Shipping_Zone_Locations_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zone-locations-controller.php' ), 'WC_REST_Shipping_Zones_Controller_Base' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zones-controller-base.php' ), 'WC_REST_Product_Reviews_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-reviews-controller.php' ), 'WC_REST_Coupons_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-coupons-controller.php' ), 'WC_REST_Network_Orders_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-network-orders-controller.php' ), 'WC_REST_Data_Continents_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-continents-controller.php' ), 'WC_REST_Order_Refunds_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-order-refunds-controller.php' ), 'WC_REST_Customer_Downloads_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-customer-downloads-controller.php' ), 'WC_REST_Product_Tags_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-tags-controller.php' ), 'WC_REST_Report_Coupons_Totals_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-coupons-totals-controller.php' ), 'WC_REST_Data_Countries_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-countries-controller.php' ), 'WC_REST_Product_Shipping_Classes_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-shipping-classes-controller.php' ), 'WC_REST_Reports_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-reports-controller.php' ), 'WC_REST_System_Status_Tools_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-system-status-tools-controller.php' ), 'WC_REST_Report_Orders_Totals_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-orders-totals-controller.php' ), 'WC_REST_Report_Top_Sellers_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-top-sellers-controller.php' ), 'WC_REST_Settings_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-settings-controller.php' ), 'WC_REST_Products_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-products-controller.php' ), 'WC_REST_Webhooks_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-webhooks-controller.php' ), 'WC_REST_Telemetry_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Telemetry/class-wc-rest-telemetry-controller.php' ), 'WC_REST_Customer_Downloads_V1_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-customer-downloads-v1-controller.php' ), 'WC_REST_Webhooks_V1_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-webhooks-v1-controller.php' ), 'WC_REST_Order_Notes_V1_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-order-notes-v1-controller.php' ), 'WC_REST_Report_Top_Sellers_V1_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-report-top-sellers-v1-controller.php' ), 'WC_REST_Product_Shipping_Classes_V1_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-shipping-classes-v1-controller.php' ), 'WC_REST_Products_V1_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-products-v1-controller.php' ), 'WC_REST_Product_Attributes_V1_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-attributes-v1-controller.php' ), 'WC_REST_Taxes_V1_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-taxes-v1-controller.php' ), 'WC_REST_Webhook_Deliveries_V1_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-webhook-deliveries-v1-controller.php' ), 'WC_REST_Coupons_V1_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-coupons-v1-controller.php' ), 'WC_REST_Order_Refunds_V1_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-order-refunds-v1-controller.php' ), 'WC_REST_Product_Reviews_V1_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-reviews-v1-controller.php' ), 'WC_REST_Reports_V1_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-reports-v1-controller.php' ), 'WC_REST_Customers_V1_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-customers-v1-controller.php' ), 'WC_REST_Report_Sales_V1_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-report-sales-v1-controller.php' ), 'WC_REST_Product_Categories_V1_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-categories-v1-controller.php' ), 'WC_REST_Product_Tags_V1_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-tags-v1-controller.php' ), 'WC_REST_Orders_V1_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-orders-v1-controller.php' ), 'WC_REST_Tax_Classes_V1_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-tax-classes-v1-controller.php' ), 'WC_REST_Product_Attribute_Terms_V1_Controller' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-attribute-terms-v1-controller.php' ), 'Automattic\\WooCommerce\\RestApi\\Utilities\\SingletonTrait' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Utilities/SingletonTrait.php' ), 'Automattic\\WooCommerce\\RestApi\\Utilities\\ImageAttachment' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/includes/rest-api/Utilities/ImageAttachment.php' ), 'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\CustomerHelper' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/CustomerHelper.php' ), 'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\AdminNotesHelper' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/AdminNotesHelper.php' ), 'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\SettingsHelper' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/SettingsHelper.php' ), 'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\QueueHelper' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/QueueHelper.php' ), 'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\ProductHelper' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/ProductHelper.php' ), 'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\ShippingHelper' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/ShippingHelper.php' ), 'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\OrderHelper' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/OrderHelper.php' ), 'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\CouponHelper' => array( 'version' => '7.3.0.0', 'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/CouponHelper.php' ), 'Automattic\\Jetpack\\Constants' => array( 'version' => '1.5.1.0', 'path' => $vendorDir . '/automattic/jetpack-constants/src/class-constants.php' ), );