Code Duplication    Length = 6-6 lines in 2 locations

includes/wpinv-template-functions.php 2 locations

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