Code Duplication    Length = 6-6 lines in 2 locations

includes/wpinv-template-functions.php 2 locations

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