|  | @@ 38-40 (lines=3) @@ | 
                                                            
                                    | 35 |  |  | 
                                                            
                                    | 36 |  | 		WP_CLI::line( sprintf( __( 'Checking status for %s', 'jetpack' ), esc_url( get_home_url() ) ) ); | 
                                                            
                                    | 37 |  |  | 
                                                            
                                    | 38 |  | 		if ( isset( $args[0] ) && 'full' !== $args[0] ) { | 
                                                            
                                    | 39 |  | 			/* translators: %s is a command like "prompt" */ | 
                                                            
                                    | 40 |  | 			WP_CLI::error( sprintf( __( '%s is not a valid command.', 'jetpack' ), $args[0] ) ); | 
                                                            
                                    | 41 |  | 		} | 
                                                            
                                    | 42 |  |  | 
                                                            
                                    | 43 |  | 		$master_user_email = Jetpack::get_master_user_email(); | 
                                                                                
                                |  | @@ 597-599 (lines=3) @@ | 
                                                            
                                    | 594 |  |  | 
                                                            
                                    | 595 |  | 		// Bail if the option isn't found | 
                                                            
                                    | 596 |  | 		$option = isset( $args[1] ) ? Jetpack_Options::get_option( $args[1] ) : false; | 
                                                            
                                    | 597 |  | 		if ( isset( $args[1] ) && ! $option && 'update' !== $args[0] ) { | 
                                                            
                                    | 598 |  | 			WP_CLI::error( __( 'Option not found or is empty.  Use "list" to list option names', 'jetpack' ) ); | 
                                                            
                                    | 599 |  | 		} | 
                                                            
                                    | 600 |  |  | 
                                                            
                                    | 601 |  | 		// Let's print_r the option if it's an array | 
                                                            
                                    | 602 |  | 		// Used in the 'get' and 'list' actions | 
                                                                                
                                |  | @@ 1683-1688 (lines=6) @@ | 
                                                            
                                    | 1680 |  | 	 * @param array $assoc_args Associative parameters defined in the scaffold() method. | 
                                                            
                                    | 1681 |  | 	 */ | 
                                                            
                                    | 1682 |  | 	public function block( $args, $assoc_args ) { | 
                                                            
                                    | 1683 |  | 		if ( isset( $args[1] ) ) { | 
                                                            
                                    | 1684 |  | 			$title = ucwords( $args[1] ); | 
                                                            
                                    | 1685 |  | 		} else { | 
                                                            
                                    | 1686 |  | 			WP_CLI::error( esc_html__( 'The title parameter is required.', 'jetpack' ) . ' 👻' ); | 
                                                            
                                    | 1687 |  | 			exit( 1 ); | 
                                                            
                                    | 1688 |  | 		} | 
                                                            
                                    | 1689 |  |  | 
                                                            
                                    | 1690 |  | 		$slug = isset( $assoc_args['slug'] ) | 
                                                            
                                    | 1691 |  | 			? $assoc_args['slug'] |