Code Duplication    Length = 11-15 lines in 2 locations

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

@@ 1144-1158 (lines=15) @@
1141
	 * @param Array $args arguments that need to have the source added.
1142
	 * @return Array $amended arguments.
1143
	 */
1144
	public static function apply_activation_source_to_args( $args ) {
1145
		list( $activation_source_name, $activation_source_keyword ) = get_option( 'jetpack_activation_source' );
1146
1147
		if ( $activation_source_name ) {
1148
			// phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.urlencode_urlencode
1149
			$args['_as'] = urlencode( $activation_source_name );
1150
		}
1151
1152
		if ( $activation_source_keyword ) {
1153
			// phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.urlencode_urlencode
1154
			$args['_ak'] = urlencode( $activation_source_keyword );
1155
		}
1156
1157
		return $args;
1158
	}
1159
1160
	/**
1161
	 * Returns the callable that would be used to generate secrets.

class.jetpack.php 1 location

@@ 4835-4845 (lines=11) @@
4832
		return self::connection()->get_assumed_site_creation_date();
4833
	}
4834
4835
	public static function apply_activation_source_to_args( &$args ) {
4836
		list( $activation_source_name, $activation_source_keyword ) = get_option( 'jetpack_activation_source' );
4837
4838
		if ( $activation_source_name ) {
4839
			$args['_as'] = urlencode( $activation_source_name );
4840
		}
4841
4842
		if ( $activation_source_keyword ) {
4843
			$args['_ak'] = urlencode( $activation_source_keyword );
4844
		}
4845
	}
4846
4847
	function build_reconnect_url( $raw = false ) {
4848
		$url = wp_nonce_url( self::admin_url( 'action=reconnect' ), 'jetpack-reconnect' );