Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
Package_Version
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
0.00% covered (danger)
0.00%
0 / 1
 send_package_version_to_tracker
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
2/**
3 * The Package_Version class's compatibility shim.
4 *
5 * @package automattic/jetpack-backup
6 */
7
8// Do *not* update the "V0001" namespace version on changes.
9namespace Automattic\Jetpack\Backup\V0001;
10
11/**
12 * Package_Version proxy class to accommodate upgrades from plugin version 2.4.
13 *
14 * Backup plugin version 2.4 had a versioned class defined ("Automattic\Jetpack\Backup\V0001\Package_Version"), so
15 * the "jetpack_package_versions" filter will try to look for the class with this namespace + name in the newer
16 * plugin's code.
17 */
18class Package_Version {
19    // phpcs:ignore Squiz.Commenting.FunctionComment.Missing
20    public static function send_package_version_to_tracker( $package_versions ) {
21        return \Automattic\Jetpack\Backup\Package_Version::send_package_version_to_tracker( $package_versions );
22    }
23}