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

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