Code Duplication    Length = 3-6 lines in 3 locations

class.jetpack-cli.php 3 locations

@@ 731-733 (lines=3) @@
728
729
		// Bail if the option isn't found
730
		$option = isset( $args[1] ) ? Jetpack_Options::get_option( $args[1] ) : false;
731
		if ( isset( $args[1] ) && ! $option && 'update' !== $args[0] ) {
732
			WP_CLI::error( __( 'Option not found or is empty.  Use "list" to list option names', 'jetpack' ) );
733
		}
734
735
		// Let's print_r the option if it's an array
736
		// Used in the 'get' and 'list' actions
@@ 45-48 (lines=4) @@
42
		/* translators: %s is the site URL */
43
		WP_CLI::line( sprintf( __( 'Checking status for %s', 'jetpack' ), esc_url( get_home_url() ) ) );
44
45
		if ( isset( $args[0] ) && 'full' !== $args[0] ) {
46
			/* translators: %s is a command like "prompt" */
47
			WP_CLI::error( sprintf( __( '%s is not a valid command.', 'jetpack' ), $args[0] ) );
48
		}
49
50
		$master_user_email = Jetpack::get_master_user_email();
51
@@ 1858-1863 (lines=6) @@
1855
	 * @param array $assoc_args Associative parameters defined in the scaffold() method.
1856
	 */
1857
	public function block( $args, $assoc_args ) {
1858
		if ( isset( $args[1] ) ) {
1859
			$title = ucwords( $args[1] );
1860
		} else {
1861
			WP_CLI::error( esc_html__( 'The title parameter is required.', 'jetpack' ) . ' 👻' );
1862
			exit( 1 );
1863
		}
1864
1865
		$slug = isset( $assoc_args['slug'] )
1866
			? $assoc_args['slug']