Code Duplication    Length = 6-6 lines in 2 locations

includes/wpinv-template-functions.php 2 locations

@@ 1910-1915 (lines=6) @@
1907
                <th class="text-left"><?php _e( 'Email', 'invoicing' ); ?></th>
1908
                <td><?php echo $billing_details['email'] ;?></td>
1909
            </tr>
1910
            <?php if ( $billing_details['company'] ) { ?>
1911
            <tr class="wpi-receipt-company">
1912
                <th class="text-left"><?php _e( 'Company', 'invoicing' ); ?></th>
1913
                <td><?php echo esc_html( $billing_details['company'] ) ;?></td>
1914
            </tr>
1915
            <?php } ?>
1916
            <tr class="wpi-receipt-address">
1917
                <th class="text-left"><?php _e( 'Address', 'invoicing' ); ?></th>
1918
                <td><?php echo $address_row ;?></td>
@@ 1920-1925 (lines=6) @@
1917
                <th class="text-left"><?php _e( 'Address', 'invoicing' ); ?></th>
1918
                <td><?php echo $address_row ;?></td>
1919
            </tr>
1920
            <?php if ( $billing_details['phone'] ) { ?>
1921
            <tr class="wpi-receipt-phone">
1922
                <th class="text-left"><?php _e( 'Phone', 'invoicing' ); ?></th>
1923
                <td><?php echo esc_html( $billing_details['phone'] ) ;?></td>
1924
            </tr>
1925
            <?php } ?>
1926
        </tbody>
1927
    </table>
1928
    <?php