Code Duplication    Length = 3-3 lines in 2 locations

includes/class-test-content.php 2 locations

@@ 625-627 (lines=3) @@
622
			$user_length = mt_rand( 5, 20 );
623
		    $domain_length = mt_rand( 7, 12 );
624
625
			for ( $i = 1; $i <= $user_length; $i++ ){
626
				$user .= substr( $char, mt_rand( 0, strlen( $char ) ), 1 );
627
			}
628
629
			for ( $i = 1; $i <= $domain_length; $i++ ){
630
				$domain .= substr( $char, mt_rand( 0, strlen( $char ) ), 1 );
@@ 629-631 (lines=3) @@
626
				$user .= substr( $char, mt_rand( 0, strlen( $char ) ), 1 );
627
			}
628
629
			for ( $i = 1; $i <= $domain_length; $i++ ){
630
				$domain .= substr( $char, mt_rand( 0, strlen( $char ) ), 1 );
631
			}
632
633
			$tld = $tlds[ mt_rand( 0, ( sizeof( $tlds ) - 1 ) ) ];
634