Code Duplication    Length = 6-6 lines in 2 locations

includes/wpinv-template-functions.php 2 locations

@@ 1911-1916 (lines=6) @@
1908
                <th class="text-left"><?php _e( 'Email', 'invoicing' ); ?></th>
1909
                <td><?php echo $billing_details['email'] ;?></td>
1910
            </tr>
1911
            <?php if ( $billing_details['company'] ) { ?>
1912
            <tr class="wpi-receipt-company">
1913
                <th class="text-left"><?php _e( 'Company', 'invoicing' ); ?></th>
1914
                <td><?php echo esc_html( $billing_details['company'] ) ;?></td>
1915
            </tr>
1916
            <?php } ?>
1917
            <tr class="wpi-receipt-address">
1918
                <th class="text-left"><?php _e( 'Address', 'invoicing' ); ?></th>
1919
                <td><?php echo $address_row ;?></td>
@@ 1921-1926 (lines=6) @@
1918
                <th class="text-left"><?php _e( 'Address', 'invoicing' ); ?></th>
1919
                <td><?php echo $address_row ;?></td>
1920
            </tr>
1921
            <?php if ( $billing_details['phone'] ) { ?>
1922
            <tr class="wpi-receipt-phone">
1923
                <th class="text-left"><?php _e( 'Phone', 'invoicing' ); ?></th>
1924
                <td><?php echo esc_html( $billing_details['phone'] ) ;?></td>
1925
            </tr>
1926
            <?php } ?>
1927
        </tbody>
1928
    </table>
1929
    <?php