Code Duplication    Length = 6-6 lines in 2 locations

includes/wpinv-template-functions.php 2 locations

@@ 1853-1858 (lines=6) @@
1850
                <th class="text-left"><?php _e( 'Email', 'invoicing' ); ?></th>
1851
                <td><?php echo $billing_details['email'] ;?></td>
1852
            </tr>
1853
            <?php if ( $billing_details['company'] ) { ?>
1854
            <tr class="wpi-receipt-company">
1855
                <th class="text-left"><?php _e( 'Company', 'invoicing' ); ?></th>
1856
                <td><?php echo esc_html( $billing_details['company'] ) ;?></td>
1857
            </tr>
1858
            <?php } ?>
1859
            <tr class="wpi-receipt-address">
1860
                <th class="text-left"><?php _e( 'Address', 'invoicing' ); ?></th>
1861
                <td><?php echo $address_row ;?></td>
@@ 1863-1868 (lines=6) @@
1860
                <th class="text-left"><?php _e( 'Address', 'invoicing' ); ?></th>
1861
                <td><?php echo $address_row ;?></td>
1862
            </tr>
1863
            <?php if ( $billing_details['phone'] ) { ?>
1864
            <tr class="wpi-receipt-phone">
1865
                <th class="text-left"><?php _e( 'Phone', 'invoicing' ); ?></th>
1866
                <td><?php echo esc_html( $billing_details['phone'] ) ;?></td>
1867
            </tr>
1868
            <?php } ?>
1869
        </tbody>
1870
    </table>
1871
    <?php