Code Duplication    Length = 11-15 lines in 2 locations

packages/connection/src/class-manager.php 1 location

@@ 1190-1204 (lines=15) @@
1187
	 * @param array $args arguments that need to have the source added.
1188
	 * @return array $amended arguments.
1189
	 */
1190
	public static function apply_activation_source_to_args( $args ) {
1191
		list( $activation_source_name, $activation_source_keyword ) = get_option( 'jetpack_activation_source' );
1192
1193
		if ( $activation_source_name ) {
1194
			// phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.urlencode_urlencode
1195
			$args['_as'] = urlencode( $activation_source_name );
1196
		}
1197
1198
		if ( $activation_source_keyword ) {
1199
			// phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.urlencode_urlencode
1200
			$args['_ak'] = urlencode( $activation_source_keyword );
1201
		}
1202
1203
		return $args;
1204
	}
1205
1206
	/**
1207
	 * Returns the callable that would be used to generate secrets.

class.jetpack.php 1 location

@@ 5020-5030 (lines=11) @@
5017
		return self::connection()->get_assumed_site_creation_date();
5018
	}
5019
5020
	public static function apply_activation_source_to_args( &$args ) {
5021
		list( $activation_source_name, $activation_source_keyword ) = get_option( 'jetpack_activation_source' );
5022
5023
		if ( $activation_source_name ) {
5024
			$args['_as'] = urlencode( $activation_source_name );
5025
		}
5026
5027
		if ( $activation_source_keyword ) {
5028
			$args['_ak'] = urlencode( $activation_source_keyword );
5029
		}
5030
	}
5031
5032
	function build_reconnect_url( $raw = false ) {
5033
		$url = wp_nonce_url( self::admin_url( 'action=reconnect' ), 'jetpack-reconnect' );