Code Duplication    Length = 6-6 lines in 2 locations

includes/wpinv-template-functions.php 2 locations

@@ 1884-1889 (lines=6) @@
1881
                <th class="text-left"><?php _e( 'Email', 'invoicing' ); ?></th>
1882
                <td><?php echo $billing_details['email'] ;?></td>
1883
            </tr>
1884
            <?php if ( $billing_details['company'] ) { ?>
1885
            <tr class="wpi-receipt-company">
1886
                <th class="text-left"><?php _e( 'Company', 'invoicing' ); ?></th>
1887
                <td><?php echo esc_html( $billing_details['company'] ) ;?></td>
1888
            </tr>
1889
            <?php } ?>
1890
            <tr class="wpi-receipt-address">
1891
                <th class="text-left"><?php _e( 'Address', 'invoicing' ); ?></th>
1892
                <td><?php echo $address_row ;?></td>
@@ 1894-1899 (lines=6) @@
1891
                <th class="text-left"><?php _e( 'Address', 'invoicing' ); ?></th>
1892
                <td><?php echo $address_row ;?></td>
1893
            </tr>
1894
            <?php if ( $billing_details['phone'] ) { ?>
1895
            <tr class="wpi-receipt-phone">
1896
                <th class="text-left"><?php _e( 'Phone', 'invoicing' ); ?></th>
1897
                <td><?php echo esc_html( $billing_details['phone'] ) ;?></td>
1898
            </tr>
1899
            <?php } ?>
1900
        </tbody>
1901
    </table>
1902
    <?php