Code Duplication    Length = 3-3 lines in 3 locations

_inc/lib/class.core-rest-api-endpoints.php 3 locations

@@ 1699-1701 (lines=3) @@
1696
1697
			// If it's an associative array, use the keys to check that the value is among those admitted.
1698
			$enum = ( count( array_filter( array_keys( $args['enum'] ), 'is_string' ) ) > 0 ) ? array_keys( $args['enum'] ) : $args['enum'];
1699
			if ( ! in_array( $value, $enum ) ) {
1700
				return new WP_Error( 'invalid_param_value', sprintf(
1701
					/* Translators: first variable is the parameter passed to endpoint that holds the list item, the second is a list of admitted values. */
1702
					esc_html__( '%1$s must be one of %2$s', 'jetpack' ), $param, implode( ', ', $enum )
1703
				) );
1704
			}
@@ 1727-1729 (lines=3) @@
1724
1725
		$modules = Jetpack::get_available_modules();
1726
1727
		if ( count( array_intersect( $value, $modules ) ) != count( $value ) ) {
1728
			return new WP_Error( 'invalid_param_value', sprintf( esc_html__( '%s must be a list of valid modules', 'jetpack' ), $param ) );
1729
		}
1730
1731
		return true;
1732
	}
@@ 1898-1900 (lines=3) @@
1895
		$sharer = new Sharing_Service();
1896
		$services = array_keys( $sharer->get_all_services() );
1897
1898
		if ( ! empty( $value ) && ! in_array( $value, $services ) ) {
1899
			return new WP_Error( 'invalid_param', sprintf( esc_html__( '%s is not a registered custom sharing service.', 'jetpack' ), $param ) );
1900
		}
1901
1902
		return true;
1903
	}