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

@@ 4825-4835 (lines=11) @@
4822
		return self::connection()->get_assumed_site_creation_date();
4823
	}
4824
4825
	public static function apply_activation_source_to_args( &$args ) {
4826
		list( $activation_source_name, $activation_source_keyword ) = get_option( 'jetpack_activation_source' );
4827
4828
		if ( $activation_source_name ) {
4829
			$args['_as'] = urlencode( $activation_source_name );
4830
		}
4831
4832
		if ( $activation_source_keyword ) {
4833
			$args['_ak'] = urlencode( $activation_source_keyword );
4834
		}
4835
	}
4836
4837
	function build_reconnect_url( $raw = false ) {
4838
		$url = wp_nonce_url( self::admin_url( 'action=reconnect' ), 'jetpack-reconnect' );