Code Duplication    Length = 8-8 lines in 2 locations

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

@@ 1030-1037 (lines=8) @@
1027
	 * @since 5.4
1028
	 * @param Integer $min_timeout the minimum timeout value.
1029
	 **/
1030
	public function set_min_time_limit( $min_timeout ) {
1031
		$timeout = $this->get_max_execution_time();
1032
		if ( $timeout < $min_timeout ) {
1033
			$timeout = $min_timeout;
1034
			set_time_limit( $timeout );
1035
		}
1036
		return $timeout;
1037
	}
1038
1039
	/**
1040
	 * Get our assumed site creation date.

class.jetpack.php 1 location

@@ 5120-5127 (lines=8) @@
5117
	 *
5118
	 * @since 5.4
5119
	 **/
5120
	public static function set_min_time_limit( $min_timeout ) {
5121
		$timeout = self::get_max_execution_time();
5122
		if ( $timeout < $min_timeout ) {
5123
			$timeout = $min_timeout;
5124
			set_time_limit( $timeout );
5125
		}
5126
		return $timeout;
5127
	}
5128
5129
	/**
5130
	 * Takes the response from the Jetpack register new site endpoint and