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

@@ 4878-4888 (lines=11) @@
4875
		return self::connection()->get_assumed_site_creation_date();
4876
	}
4877
4878
	public static function apply_activation_source_to_args( &$args ) {
4879
		list( $activation_source_name, $activation_source_keyword ) = get_option( 'jetpack_activation_source' );
4880
4881
		if ( $activation_source_name ) {
4882
			$args['_as'] = urlencode( $activation_source_name );
4883
		}
4884
4885
		if ( $activation_source_keyword ) {
4886
			$args['_ak'] = urlencode( $activation_source_keyword );
4887
		}
4888
	}
4889
4890
	function build_reconnect_url( $raw = false ) {
4891
		$url = wp_nonce_url( self::admin_url( 'action=reconnect' ), 'jetpack-reconnect' );