diff options
Diffstat (limited to 'plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class-jetpack-sync-modules.php')
-rw-r--r-- | plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class-jetpack-sync-modules.php | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class-jetpack-sync-modules.php b/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class-jetpack-sync-modules.php deleted file mode 100644 index 69bc8af5..00000000 --- a/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class-jetpack-sync-modules.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php -/** - * A compatibility shim for the sync modules class. - * - * @package automattic/jetpack-compat - */ - -use Automattic\Jetpack\Sync\Modules; - -/** - * Class Jetpack_Sync_Modules - * - * @deprecated Use Automattic\Jetpack\Sync\Modules - */ -class Jetpack_Sync_Modules { - - /** - * Returns the sync module object. - * - * @param String $module_name the module name. - * @return Automattic\Jetpack\Sync\Modules\Module the module object. - */ - public static function get_module( $module_name ) { - _deprecated_function( __METHOD__, 'jetpack-7.5', 'Automattic\Jetpack\Sync\Modules' ); - - return Modules::get_module( $module_name ); - } -} |