Code Duplication    Length = 6-6 lines in 2 locations

includes/wpinv-template-functions.php 2 locations

@@ 1875-1880 (lines=6) @@
1872
                <th class="text-left"><?php _e( 'Email', 'invoicing' ); ?></th>
1873
                <td><?php echo $billing_details['email'] ;?></td>
1874
            </tr>
1875
            <?php if ( $billing_details['company'] ) { ?>
1876
            <tr class="wpi-receipt-company">
1877
                <th class="text-left"><?php _e( 'Company', 'invoicing' ); ?></th>
1878
                <td><?php echo esc_html( $billing_details['company'] ) ;?></td>
1879
            </tr>
1880
            <?php } ?>
1881
            <tr class="wpi-receipt-address">
1882
                <th class="text-left"><?php _e( 'Address', 'invoicing' ); ?></th>
1883
                <td><?php echo $address_row ;?></td>
@@ 1885-1890 (lines=6) @@
1882
                <th class="text-left"><?php _e( 'Address', 'invoicing' ); ?></th>
1883
                <td><?php echo $address_row ;?></td>
1884
            </tr>
1885
            <?php if ( $billing_details['phone'] ) { ?>
1886
            <tr class="wpi-receipt-phone">
1887
                <th class="text-left"><?php _e( 'Phone', 'invoicing' ); ?></th>
1888
                <td><?php echo esc_html( $billing_details['phone'] ) ;?></td>
1889
            </tr>
1890
            <?php } ?>
1891
        </tbody>
1892
    </table>
1893
    <?php