Code Duplication    Length = 6-6 lines in 2 locations

includes/wpinv-template-functions.php 2 locations

@@ 1896-1901 (lines=6) @@
1893
                <th class="text-left"><?php _e( 'Email', 'invoicing' ); ?></th>
1894
                <td><?php echo $billing_details['email'] ;?></td>
1895
            </tr>
1896
            <?php if ( $billing_details['company'] ) { ?>
1897
            <tr class="wpi-receipt-company">
1898
                <th class="text-left"><?php _e( 'Company', 'invoicing' ); ?></th>
1899
                <td><?php echo esc_html( $billing_details['company'] ) ;?></td>
1900
            </tr>
1901
            <?php } ?>
1902
            <tr class="wpi-receipt-address">
1903
                <th class="text-left"><?php _e( 'Address', 'invoicing' ); ?></th>
1904
                <td><?php echo $address_row ;?></td>
@@ 1906-1911 (lines=6) @@
1903
                <th class="text-left"><?php _e( 'Address', 'invoicing' ); ?></th>
1904
                <td><?php echo $address_row ;?></td>
1905
            </tr>
1906
            <?php if ( $billing_details['phone'] ) { ?>
1907
            <tr class="wpi-receipt-phone">
1908
                <th class="text-left"><?php _e( 'Phone', 'invoicing' ); ?></th>
1909
                <td><?php echo esc_html( $billing_details['phone'] ) ;?></td>
1910
            </tr>
1911
            <?php } ?>
1912
        </tbody>
1913
    </table>
1914
    <?php