Code Duplication    Length = 4-4 lines in 2 locations

classes/PodsForm.php 2 locations

@@ 455-458 (lines=4) @@
452
                $options[ 'class' ] = implode( ' ', $options[ 'class' ] );
453
454
            $options[ 'class' ] = (string) $options[ 'class' ];
455
            if ( isset( $attributes[ 'class' ] ) )
456
                $attributes[ 'class' ] = $attributes[ 'class' ] . ' ' . $options[ 'class' ];
457
            else
458
                $attributes[ 'class' ] = $options[ 'class' ];
459
460
            $attributes[ 'class' ] = trim( $attributes[ 'class' ] );
461
        }
@@ 464-467 (lines=4) @@
461
        }
462
463
        if ( !empty( $classes ) ) {
464
            if ( isset( $attributes[ 'class' ] ) )
465
                $attributes[ 'class' ] = $attributes[ 'class' ] . ' ' . $classes;
466
            else
467
                $attributes[ 'class' ] = $classes;
468
        }
469
470
        if ( isset( $options[ 'placeholder' ] ) && !empty( $options[ 'placeholder' ] ) ) {