Code Duplication    Length = 6-6 lines in 2 locations

includes/wpinv-template-functions.php 2 locations

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