Code Duplication    Length = 6-6 lines in 2 locations

includes/wpinv-template-functions.php 2 locations

@@ 1829-1834 (lines=6) @@
1826
                <th class="text-left"><?php _e( 'Email', 'invoicing' ); ?></th>
1827
                <td><?php echo $billing_details['email'] ;?></td>
1828
            </tr>
1829
            <?php if ( $billing_details['company'] ) { ?>
1830
            <tr class="wpi-receipt-company">
1831
                <th class="text-left"><?php _e( 'Company', 'invoicing' ); ?></th>
1832
                <td><?php echo esc_html( $billing_details['company'] ) ;?></td>
1833
            </tr>
1834
            <?php } ?>
1835
            <tr class="wpi-receipt-address">
1836
                <th class="text-left"><?php _e( 'Address', 'invoicing' ); ?></th>
1837
                <td><?php echo $address_row ;?></td>
@@ 1839-1844 (lines=6) @@
1836
                <th class="text-left"><?php _e( 'Address', 'invoicing' ); ?></th>
1837
                <td><?php echo $address_row ;?></td>
1838
            </tr>
1839
            <?php if ( $billing_details['phone'] ) { ?>
1840
            <tr class="wpi-receipt-phone">
1841
                <th class="text-left"><?php _e( 'Phone', 'invoicing' ); ?></th>
1842
                <td><?php echo esc_html( $billing_details['phone'] ) ;?></td>
1843
            </tr>
1844
            <?php } ?>
1845
        </tbody>
1846
    </table>
1847
    <?php