Code Duplication    Length = 8-8 lines in 2 locations

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

@@ 1179-1186 (lines=8) @@
1176
	 * @since 5.4
1177
	 * @param Integer $min_timeout the minimum timeout value.
1178
	 **/
1179
	public function set_min_time_limit( $min_timeout ) {
1180
		$timeout = $this->get_max_execution_time();
1181
		if ( $timeout < $min_timeout ) {
1182
			$timeout = $min_timeout;
1183
			set_time_limit( $timeout );
1184
		}
1185
		return $timeout;
1186
	}
1187
1188
	/**
1189
	 * Get our assumed site creation date.

class.jetpack.php 1 location

@@ 5373-5380 (lines=8) @@
5370
	 *
5371
	 * @since 5.4
5372
	 **/
5373
	public static function set_min_time_limit( $min_timeout ) {
5374
		$timeout = self::get_max_execution_time();
5375
		if ( $timeout < $min_timeout ) {
5376
			$timeout = $min_timeout;
5377
			set_time_limit( $timeout );
5378
		}
5379
		return $timeout;
5380
	}
5381
5382
	/**
5383
	 * Takes the response from the Jetpack register new site endpoint and