PHP 8.0.30
Preview: class-version-selector.php Size: 1.81 KB
/home/certprox/zang.certproxywizard.com/wp/wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-version-selector.php

<?php
/**
 * This file was automatically generated by automattic/jetpack-autoloader.
 *
 * @package automattic/jetpack-autoloader
 */

namespace Automattic\Jetpack\Autoloader\jp60af226fe0a5f254066dfe81b410c136\al5_0_0;

 // phpcs:ignore

/**
 * Used to select package versions.
 */
class Version_Selector {

	/**
	 * Checks whether the selected package version should be updated. Composer development
	 * package versions ('9999999-dev' or versions that start with 'dev-') are favored
	 * when the JETPACK_AUTOLOAD_DEV constant is set to true.
	 *
	 * @param String $selected_version The currently selected package version.
	 * @param String $compare_version The package version that is being evaluated to
	 *                                determine if the version needs to be updated.
	 *
	 * @return bool Returns true if the selected package version should be updated,
	 *                 else false.
	 */
	public function is_version_update_required( $selected_version, $compare_version ) {
		$use_dev_versions = defined( 'JETPACK_AUTOLOAD_DEV' ) && JETPACK_AUTOLOAD_DEV;

		if ( $selected_version === null ) {
			return true;
		}

		if ( $use_dev_versions && $this->is_dev_version( $selected_version ) ) {
			return false;
		}

		if ( $this->is_dev_version( $compare_version ) ) {
			if ( $use_dev_versions ) {
				return true;
			} else {
				return false;
			}
		}

		if ( version_compare( $selected_version, $compare_version, '<' ) ) {
			return true;
		}

		return false;
	}

	/**
	 * Checks whether the given package version is a development version.
	 *
	 * @param String $version The package version.
	 *
	 * @return bool True if the version is a dev version, else false.
	 */
	public function is_dev_version( $version ) {
		if ( 'dev-' === substr( $version, 0, 4 ) || '9999999-dev' === $version ) {
			return true;
		}

		return false;
	}
}

Directory Contents

Dirs: 0 × Files: 14

Name Size Perms Modified Actions
4.50 KB lrw-r--r-- 2026-03-30 10:22:57
Edit Download
2.12 KB lrw-r--r-- 2026-03-30 10:22:57
Edit Download
4.25 KB lrw-r--r-- 2026-03-30 10:22:57
Edit Download
4.81 KB lrw-r--r-- 2026-03-30 10:22:57
Edit Download
2.11 KB lrw-r--r-- 2026-03-30 10:22:57
Edit Download
5.84 KB lrw-r--r-- 2026-03-30 10:22:57
Edit Download
2.63 KB lrw-r--r-- 2026-03-30 10:22:57
Edit Download
5.57 KB lrw-r--r-- 2026-03-30 10:22:57
Edit Download
3.60 KB lrw-r--r-- 2026-03-30 10:22:57
Edit Download
4.52 KB lrw-r--r-- 2026-03-30 10:22:57
Edit Download
5.75 KB lrw-r--r-- 2026-03-30 10:22:57
Edit Download
2.83 KB lrw-r--r-- 2026-03-30 10:22:57
Edit Download
4.38 KB lrw-r--r-- 2026-03-30 10:22:57
Edit Download
1.81 KB lrw-r--r-- 2026-03-30 10:22:57
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).